diff --git a/hosts/snowbelle/configuration.nix b/hosts/snowbelle/configuration.nix index 98c6c4c..03def9c 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -72,6 +72,14 @@ # allow proprietary packages nixpkgs.config.allowUnfree = true; + # ld fix + programs.nix-ld.enable = true; + programs.nix-ld.libraries = with pkgs; [ + # Add any missing dynamic libraries for unpackaged + # programs here, NOT in environment.systemPackages + ]; + + # enable flakes nix.settings.experimental-features = [ "nix-command" "flakes" ];