fix: nix-ld globally

This commit is contained in:
2025-01-22 05:51:56 +00:00
parent 23261ba8bd
commit 90604fe3fb
2 changed files with 1 additions and 1 deletions

View File

@@ -10,7 +10,6 @@
wsl.enable = true; wsl.enable = true;
wsl.defaultUser = "luca"; wsl.defaultUser = "luca";
networking.hostName = meta.hostname; networking.hostName = meta.hostname;
programs.nix-ld.enable = true;
hm.enable = true; hm.enable = true;
users.users.luca.shell = pkgs.zsh; users.users.luca.shell = pkgs.zsh;

View File

@@ -7,4 +7,5 @@
}; };
}; };
config.commonPackages = with pkgs; [ wget busybox curl stow ]; config.commonPackages = with pkgs; [ wget busybox curl stow ];
config.programs.nix-ld.enable = true;
} }