Felix Erklaerbaer Termin

This commit is contained in:
2023-06-30 09:02:00 +00:00
parent 92ed683b43
commit 2003e17fa4
16 changed files with 422 additions and 262 deletions
+27
View File
@@ -0,0 +1,27 @@
{ config, lib, pkgs, inputs, ... }:
{
nix = {
daemonCPUSchedPolicy = "idle";
daemonIOSchedClass = "idle";
settings = {
auto-optimise-store = true;
};
gc = {
automatic = true;
options = "--delete-older-than 30d";
};
extraOptions = ''
experimental-features = nix-command flakes
warn-dirty = false
'';
registry = {
nixpkgs.flake = inputs.nixpkgs;
unstable.flake = inputs.nixpkgs-unstable;
};
};
nixpkgs.config.allowUnfree = true;
}