removed programs from systems/configuration.nix and created modules/libs.nix

This commit is contained in:
Richie Cahill
2024-04-15 00:08:17 -04:00
committed by Alice Huston
parent 8febdc8e9a
commit 8cc17721f0
2 changed files with 25 additions and 50 deletions

25
modules/libs.nix Normal file
View File

@ -0,0 +1,25 @@
{ 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
];
};
}