1
0
Fork 0
pvv-nixos-config/base/nix.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
679 B
Nix
Raw Normal View History

2024-08-31 22:23:09 +02:00
{ inputs, ... }:
{
2024-09-01 01:44:59 +02:00
nix = {
gc = {
automatic = true;
options = "--delete-older-than 2d";
};
2024-08-31 22:23:09 +02:00
2024-09-01 01:44:59 +02:00
settings = {
allow-dirty = true;
auto-optimise-store = true;
builders-use-substitutes = true;
experimental-features = [ "nix-command" "flakes" ];
log-lines = 50;
use-xdg-base-directories = true;
};
/* This makes commandline tools like
** nix run nixpkgs#hello
** and nix-shell -p hello
** use the same channel the system
** was built with
*/
registry = {
"nixpkgs".flake = inputs.nixpkgs;
"pvv-nix".flake = inputs.self;
};
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
2024-08-31 22:23:09 +02:00
};
}