add homeManagerFlakeModule for declaring homeManager flake outputs

This commit is contained in:
ulic-youthlic 2025-03-13 20:11:08 +08:00
parent f7c4a7d830
commit 0ff80a7596
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
3 changed files with 11 additions and 8 deletions

View file

@ -47,7 +47,7 @@
{ ... }:
{
imports = [
outputs.homeManagerModules."${unixName}"
outputs.homeModules."${unixName}"
(rootPath + "/home/${unixName}/configurations/${hostName}")
];
}
@ -58,7 +58,7 @@
inherit (pkgs) system;
};
backupFileExtension = "backup";
sharedModules = [ outputs.homeManagerModules.default ];
sharedModules = [ outputs.homeModules.default ];
};
};
}