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 = { home-manager.extraSpecialArgs = {
inherit inputs outputs hostname username hyprland sysversion; inherit inputs outputs hostname username hyprland sysversion;
}; };
home-manager.users."${username}" = [ home-manager.users."${username}" = { ... }: {
import "${self}/home/desktop.nix" imports = [
import "${self}/modules/home/develop.nix" "${self}/home/desktop.nix"
]; "${self}/modules/home/develop.nix"
];
};
} }
]; ];