36 lines
874 B
Nix
36 lines
874 B
Nix
{ config, pkgs, inputs, ... }: {
|
|
services.nix-daemon.enable = true;
|
|
nix = {
|
|
package = pkgs.nixFlakes;
|
|
registry.nixpkgs.flake = inputs.nixpkgs;
|
|
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
|
extraOptions = ''
|
|
keep-outputs = true
|
|
keep-derivations = true
|
|
'';
|
|
gc = {
|
|
automatic = true;
|
|
interval.Day = 1;
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
settings = {
|
|
auto-optimise-store = true;
|
|
connect-timeout = 30;
|
|
cores = 2;
|
|
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
|
fallback = true;
|
|
keep-outputs = true;
|
|
log-lines = 25;
|
|
max-free = 1000000000;
|
|
max-jobs = 6;
|
|
min-free = 128000000;
|
|
warn-dirty = false;
|
|
trusted-users = [ "@admin" ];
|
|
};
|
|
};
|
|
nixpkgs = {
|
|
hostPlatform = "x86_64-darwin";
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|