From 90604fe3fb2ffe65a43e88207c5d6d31f4c743ea Mon Sep 17 00:00:00 2001 From: rocketcamel Date: Wed, 22 Jan 2025 05:51:56 +0000 Subject: [PATCH] fix: nix-ld globally --- nix/hosts/wsl-kumatani/configuration.nix | 1 - nix/modules/commonPackages.nix | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/hosts/wsl-kumatani/configuration.nix b/nix/hosts/wsl-kumatani/configuration.nix index 3c28902..962ef74 100644 --- a/nix/hosts/wsl-kumatani/configuration.nix +++ b/nix/hosts/wsl-kumatani/configuration.nix @@ -10,7 +10,6 @@ wsl.enable = true; wsl.defaultUser = "luca"; networking.hostName = meta.hostname; - programs.nix-ld.enable = true; hm.enable = true; users.users.luca.shell = pkgs.zsh; diff --git a/nix/modules/commonPackages.nix b/nix/modules/commonPackages.nix index 776e3a6..12b1c42 100644 --- a/nix/modules/commonPackages.nix +++ b/nix/modules/commonPackages.nix @@ -7,4 +7,5 @@ }; }; config.commonPackages = with pkgs; [ wget busybox curl stow ]; + config.programs.nix-ld.enable = true; }