added sops on inputs

This commit is contained in:
kenji
2025-12-24 15:51:42 -06:00
parent 348d2b46e6
commit 3980c8ae88
3 changed files with 29 additions and 6 deletions
Generated
+22 -1
View File
@@ -572,7 +572,8 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"hyprland": "hyprland", "hyprland": "hyprland",
"nixovim": "nixovim", "nixovim": "nixovim",
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2",
"sops-nix": "sops-nix"
} }
}, },
"rust-overlay": { "rust-overlay": {
@@ -593,6 +594,26 @@
"type": "github" "type": "github"
} }
}, },
"sops-nix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1766289575,
"narHash": "sha256-BOKCwOQQIP4p9z8DasT5r+qjri3x7sPCOq+FTjY8Z+o=",
"owner": "Mic92",
"repo": "sops-nix",
"rev": "9836912e37aef546029e48c8749834735a6b9dad",
"type": "github"
},
"original": {
"owner": "Mic92",
"repo": "sops-nix",
"type": "github"
}
},
"systems": { "systems": {
"locked": { "locked": {
"lastModified": 1689347949, "lastModified": 1689347949,
+7 -1
View File
@@ -16,13 +16,18 @@
url = "git+https://git.sakamoto.dev/kenji/nixovim.git"; url = "git+https://git.sakamoto.dev/kenji/nixovim.git";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { outputs = {
self, self,
nixpkgs, nixpkgs,
home-manager, home-manager,
nixovim, nixovim, # FIXME: should be inside of modules
sops-nix,
... ...
} @ inputs: let } @ inputs: let
config = import ./config.nix; config = import ./config.nix;
@@ -38,6 +43,7 @@
specialArgs = args; specialArgs = args;
modules = [ modules = [
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
sops-nix.nixosModules.sops
./hosts/hakase/configuration.nix ./hosts/hakase/configuration.nix
]; ];
}; };
-4
View File
@@ -1,7 +1,3 @@
{pkgs, ...}: { {pkgs, ...}: {
security.pam.services.greetd.enableGnomeKeyring = true; security.pam.services.greetd.enableGnomeKeyring = true;
environment.systemPackages = with pkgs; [
sops
age
];
} }