Add nix-ld

This commit is contained in:
Florian RICHER 2024-05-01 18:10:10 +02:00
parent 4085792374
commit 0f0746354f
2 changed files with 29 additions and 0 deletions

View file

@ -15,6 +15,7 @@
../../modules/keymaps/us.nix
../../modules/bluetooth.nix
../../modules/pipewire.nix
../../modules/nix-ld.nix
# Include the results of the hardware scan.
./hardware-configuration.nix

28
modules/nix-ld.nix Normal file
View file

@ -0,0 +1,28 @@
{ config, pkgs, ... }: {
# Enable nix ld
programs.nix-ld.enable = true;
programs.nix-ld.package = pkgs.nix-ld-rs;
# Sets up all the libraries to load
programs.nix-ld.libraries = with pkgs; [
zlib
zstd
stdenv.cc.cc
curl
openssl
attr
libssh
bzip2
libxml2
acl
libsodium
util-linux
xz
systemd
fuse3
icu
nss
expat
];
}