Switch to the "new" standard hm-modules flake ouput name

See https://github.com/NixOS/nix/pull/10858
This commit is contained in:
SebastianStork 2026-02-03 19:16:57 +01:00
parent fee1ddd9a9
commit 1c0f293c3d
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
3 changed files with 3 additions and 3 deletions

View file

@ -2,6 +2,6 @@
{ {
flake = { flake = {
nixosModules.default.imports = self.lib.listNixFilesRecursively "${self}/modules/system"; 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";
}; };
} }

View file

@ -9,7 +9,7 @@ let
cfg = config.custom.sops; cfg = config.custom.sops;
in in
{ {
imports = [ inputs.sops.homeManagerModules.sops ]; imports = [ inputs.sops.homeModules.sops ];
options.custom.sops = { options.custom.sops = {
enable = lib.mkEnableOption ""; enable = lib.mkEnableOption "";

View file

@ -5,7 +5,7 @@
... ...
}: }:
{ {
imports = [ self.homeManagerModules.default ]; imports = [ self.homeModules.default ];
xdg = { xdg = {
enable = true; enable = true;