This commit is contained in:
2025-04-21 13:59:15 +08:00
parent 26f20aeacd
commit 80aebd1147
3 changed files with 4 additions and 3 deletions

View File

@@ -14,7 +14,6 @@
# You can also split up your configuration and import pieces of it here:
./core.nix
../modules/home/hyprland
../modules/home/v2ray
../modules/home/vscode
../modules/home/xdg.nix
../modules/home/theme.nix

View File

@@ -3,7 +3,6 @@
{
home = {
packages = with pkgs; [
dbeaver
go
nodejs
yarn

View File

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