mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-20 17:24:35 +05:30
enable nix-ld
This commit is contained in:
parent
e09a1050d5
commit
d13605eaa8
|
@ -90,6 +90,7 @@
|
||||||
cryptsetup
|
cryptsetup
|
||||||
home-manager
|
home-manager
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
|
nix-ld
|
||||||
];
|
];
|
||||||
|
|
||||||
# I use zsh btw
|
# I use zsh btw
|
||||||
|
@ -107,6 +108,25 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# nix-ld
|
||||||
|
programs.nix-ld.enable = true;
|
||||||
|
programs.nix-ld.libraries = with pkgs; [
|
||||||
|
zlib
|
||||||
|
zstd
|
||||||
|
stdenv.cc.cc
|
||||||
|
curl
|
||||||
|
openssl
|
||||||
|
attr
|
||||||
|
libssh
|
||||||
|
bzip2
|
||||||
|
libxml2
|
||||||
|
acl
|
||||||
|
libsodium
|
||||||
|
util-linux
|
||||||
|
xz
|
||||||
|
systemd
|
||||||
|
];
|
||||||
|
|
||||||
# It is ok to leave this unchanged for compatibility purposes
|
# It is ok to leave this unchanged for compatibility purposes
|
||||||
system.stateVersion = "22.11";
|
system.stateVersion = "22.11";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue