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 = {
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";
};
}