19 lines
550 B
Nix
19 lines
550 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
nix.settings.auto-optimise-store = true;
|
|
nix.gc.automatic = true;
|
|
nix.gc.options = "--delete-older-than 7d";
|
|
# https://github.com/nix-community/nixd/blob/main/nixd/docs/configuration.md
|
|
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
|
|
|
programs.nix-ld = {
|
|
enable = true;
|
|
# libraries = pkgs.steam-run.fhsenv.args.multiPkgs pkgs;
|
|
# libraries = pkgs.appimageTools.defaultFhsEnvArgs.targetPkgs pkgs;
|
|
};
|
|
}
|
|
|