mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 17:49:07 +01:00
Switch to the "new" standard hm-modules flake ouput name
See https://github.com/NixOS/nix/pull/10858
This commit is contained in:
parent
fee1ddd9a9
commit
1c0f293c3d
3 changed files with 3 additions and 3 deletions
|
|
@ -2,6 +2,6 @@
|
|||
{
|
||||
flake = {
|
||||
nixosModules.default.imports = self.lib.listNixFilesRecursively "${self}/modules/system";
|
||||
homeManagerModules.default.imports = self.lib.listNixFilesRecursively "${self}/modules/home";
|
||||
homeModules.default.imports = self.lib.listNixFilesRecursively "${self}/modules/home";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ let
|
|||
cfg = config.custom.sops;
|
||||
in
|
||||
{
|
||||
imports = [ inputs.sops.homeManagerModules.sops ];
|
||||
imports = [ inputs.sops.homeModules.sops ];
|
||||
|
||||
options.custom.sops = {
|
||||
enable = lib.mkEnableOption "";
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
imports = [ self.homeManagerModules.default ];
|
||||
imports = [ self.homeModules.default ];
|
||||
|
||||
xdg = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue