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: # You can also split up your configuration and import pieces of it here:
./core.nix ./core.nix
../modules/home/hyprland ../modules/home/hyprland
../modules/home/v2ray
../modules/home/vscode ../modules/home/vscode
../modules/home/xdg.nix ../modules/home/xdg.nix
../modules/home/theme.nix ../modules/home/theme.nix

View File

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

View File

@@ -29,7 +29,10 @@ 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}" = import "${self}/home/desktop.nix"; home-manager.users."${username}" = [
import "${self}/home/desktop.nix"
import "${self}/modules/home/develop.nix"
];
} }
]; ];