mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-02-21 01:17:53 +01:00
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
nix = {
|
|
gc = {
|
|
automatic = true;
|
|
options = "--delete-older-than 2d";
|
|
};
|
|
optimise.automatic = true;
|
|
|
|
settings = {
|
|
allow-dirty = true;
|
|
auto-allocate-uids = true;
|
|
builders-use-substitutes = true;
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
"auto-allocate-uids"
|
|
];
|
|
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 = lib.mkMerge [
|
|
{
|
|
"nixpkgs".flake = inputs.nixpkgs;
|
|
"nixpkgs-unstable".flake = inputs.nixpkgs-unstable;
|
|
}
|
|
# We avoid the reference to self in vmVariant to get a stable system .outPath for equivalence testing
|
|
(lib.mkIf (!config.virtualisation.isVmVariant) {
|
|
"pvv-nix".flake = inputs.self;
|
|
})
|
|
];
|
|
nixPath = [
|
|
"nixpkgs=${inputs.nixpkgs}"
|
|
"unstable=${inputs.nixpkgs-unstable}"
|
|
];
|
|
};
|
|
|
|
# Make builds to be more likely killed than important services.
|
|
# 100 is the default for user slices and 500 is systemd-coredumpd@
|
|
# We rather want a build to be killed than our precious user sessions as builds can be easily restarted.
|
|
systemd.services.nix-daemon.serviceConfig.OOMScoreAdjust = lib.mkDefault 250;
|
|
}
|