From 2cfeb76ecb7fa95f4e0eb7fc6e83f93870111a74 Mon Sep 17 00:00:00 2001 From: 0xTux <0xtux@pm.me> Date: Fri, 2 Aug 2024 02:03:59 +0530 Subject: [PATCH] change package to nix-ld-rs --- hosts/canopus/default.nix | 5 ++++- hosts/controller/default.nix | 5 ++++- hosts/wsl/default.nix | 3 +++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/hosts/canopus/default.nix b/hosts/canopus/default.nix index fbc146c..3bc6d67 100755 --- a/hosts/canopus/default.nix +++ b/hosts/canopus/default.nix @@ -92,7 +92,10 @@ enable = true; plugins = with pkgs.xfce; [thunar-archive-plugin thunar-volman]; }; - nix-ld.enable = true; + nix-ld = { + enable = true; + package = pkgs.nix-ld-rs; + }; nm-applet.enable = true; noisetorch.enable = true; }; diff --git a/hosts/controller/default.nix b/hosts/controller/default.nix index c66bfb8..63d561b 100644 --- a/hosts/controller/default.nix +++ b/hosts/controller/default.nix @@ -31,7 +31,10 @@ programs = { zsh.enable = true; - nix-ld.enable = true; + nix-ld = { + enable = true; + package = pkgs.nix-ld-rs; + }; dconf.enable = true; }; diff --git a/hosts/wsl/default.nix b/hosts/wsl/default.nix index 17a9e5b..257f27d 100644 --- a/hosts/wsl/default.nix +++ b/hosts/wsl/default.nix @@ -27,10 +27,13 @@ programs = { ssh.startAgent = true; zsh.enable = true; + nix-ld = { enable = true; libraries = config.hardware.opengl.extraPackages; + package = pkgs.nix-ld-rs; }; + dconf.enable = true; };