diff --git a/flake.nix b/flake.nix index a56e6c0..b630a83 100644 --- a/flake.nix +++ b/flake.nix @@ -8,6 +8,10 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + + sops-nix = { + url = "github:Mic92/sops-nix"; + }; }; outputs = { self, nixpkgs, ... }@inputs: { @@ -17,6 +21,7 @@ modules = [ ./hosts/default/configuration.nix inputs.home-manager.nixosModules.default + sops-nix.nixosModules.sops ]; }; kim = nixpkgs.lib.nixosSystem { @@ -24,6 +29,7 @@ modules = [ ./hosts/kim/configuration.nix inputs.home-manager.nixosModules.default + sops-nix.nixosModules.sops ]; }; };