This commit is contained in:
2025-04-21 14:00:46 +08:00
parent 80aebd1147
commit bf04b3bc4c

View File

@@ -29,10 +29,12 @@ in
home-manager.extraSpecialArgs = {
inherit inputs outputs hostname username hyprland sysversion;
};
home-manager.users."${username}" = [
import "${self}/home/desktop.nix"
import "${self}/modules/home/develop.nix"
];
home-manager.users."${username}" = { ... }: {
imports = [
"${self}/home/desktop.nix"
"${self}/modules/home/develop.nix"
];
};
}
];