nixos/machines/core/nix.nix
2024-06-11 18:41:45 +02:00

46 lines
848 B
Nix

{ pkgs, inputs, ... }:
{
nix = {
daemonCPUSchedPolicy = "idle";
daemonIOSchedClass = "idle";
settings = {
trusted-users = [
"root"
"@wheel"
];
auto-optimise-store = true;
builders-use-substitutes = true;
};
gc = {
automatic = true;
options = "--delete-older-than 30d";
};
extraOptions = ''
experimental-features = nix-command flakes
'';
registry = {
nixpkgs.flake = inputs.nixpkgs;
unstable.flake = inputs.nixpkgs-unstable;
};
};
# auto upgrade with own flakes
system.autoUpgrade = {
enable = true;
flake = "github:Stunkymonkey/nixos";
};
environment.systemPackages = with pkgs; [
nix-index
nix-prefetch
nix-update
nixfmt-rfc-style
nixpkgs-fmt
nixpkgs-hammering
nixpkgs-review
];
}