Skip to content

Commit

Permalink
Fix module declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Oct 31, 2024
1 parent 1666d16 commit c1013ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
inherit (prev) ssh-to-pgp;
};
nixosModules = {
sops = import ./modules/sops;
sops = ./modules/sops;
default = self.nixosModules.sops;
};
homeManagerModules.sops = import ./modules/home-manager/sops.nix;
homeManagerModules.sops = ./modules/home-manager/sops.nix;
homeManagerModule = self.homeManagerModules.sops;
packages = forAllSystems (system:
import ./default.nix {
Expand Down

0 comments on commit c1013ad

Please sign in to comment.