Reorganized the repo

This commit is contained in:
willifan 2024-07-06 21:33:59 +02:00
parent 5176e7cdf8
commit f1b559ba06
62 changed files with 182 additions and 45 deletions

12
hosts/desktop/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
];
}