mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
Fix module declarations
This commit is contained in:
parent
e9b5eef9b5
commit
59d6988329
1 changed files with 2 additions and 2 deletions
|
@ -27,10 +27,10 @@
|
||||||
inherit (prev) ssh-to-pgp;
|
inherit (prev) ssh-to-pgp;
|
||||||
};
|
};
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
sops = import ./modules/sops;
|
sops = ./modules/sops;
|
||||||
default = self.nixosModules.sops;
|
default = self.nixosModules.sops;
|
||||||
};
|
};
|
||||||
homeManagerModules.sops = import ./modules/home-manager/sops.nix;
|
homeManagerModules.sops = ./modules/home-manager/sops.nix;
|
||||||
homeManagerModule = self.homeManagerModules.sops;
|
homeManagerModule = self.homeManagerModules.sops;
|
||||||
packages = forAllSystems (system:
|
packages = forAllSystems (system:
|
||||||
import ./default.nix {
|
import ./default.nix {
|
||||||
|
|
Loading…
Reference in a new issue