This commit is contained in:
willifan 2024-05-11 19:56:45 +02:00
parent 3d0a294785
commit 347b20d668
17 changed files with 298 additions and 16 deletions

12
hosts/common/nix-ld.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
# Add any missing dynamic libraries for unpackaged programs
# here, NOT in environment.systemPackages
];
}