.github
.vscode
docs
hydra
keys
modules
base.nix
boot.nix
docker.nix
endlessh.nix
fail2ban.nix
flake-update-service.nix
libs.nix
locale.nix
nix.nix
nom.patch
openssh.nix
pam-fingerprint-swap.nix
programs.nix
update.nix
systems
users
.envrc
.gitignore
.sops.yaml
flake.lock
flake.nix
treefmt.toml
26 lines
349 B
Nix
26 lines
349 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
programs.nix-ld = {
|
|
enable = lib.mkDefault true;
|
|
libraries = with pkgs; [
|
|
acl
|
|
attr
|
|
bzip2
|
|
curl
|
|
glib
|
|
libglvnd
|
|
libmysqlclient
|
|
libsodium
|
|
libssh
|
|
libxml2
|
|
openssl
|
|
stdenv.cc.cc
|
|
systemd
|
|
util-linux
|
|
xz
|
|
zlib
|
|
zstd
|
|
];
|
|
};
|
|
}
|