Compare commits

..

1 commit

Author SHA1 Message Date
5f1f973f72
nix config to save some space 2024-10-13 14:03:18 +02:00

View file

@ -1,27 +1,25 @@
{ {
nix = { nix.settings = {
settings = { trusted-public-keys = [
trusted-public-keys = [ "nerflap2-1:pDZCg0oo9PxNQxwVSQSvycw7WXTl53PGvVeZWvxuqJc="
"nerflap2-1:pDZCg0oo9PxNQxwVSQSvycw7WXTl53PGvVeZWvxuqJc=" "gonne.mathebau.de-1:FsXFyFiBFE/JxC9MCkt/WuiXjx5dkRI9RXj0FxOQrV0="
"gonne.mathebau.de-1:FsXFyFiBFE/JxC9MCkt/WuiXjx5dkRI9RXj0FxOQrV0=" ];
]; experimental-features = [
experimental-features = [ "flakes"
"flakes" "nix-command"
"nix-command" ];
]; auto-optimise-store = true;
auto-optimise-store = true; fallback = true;
fallback = true; builders-use-substitus = true;
builders-use-substitutes = true; };
}; gc = {
gc = { persistent = true;
persistent = true; dates = "weekly";
dates = "weekly"; options = "-d";
options = "-d"; randomizedDelaySec = "5h";
randomizedDelaySec = "5h"; };
}; optimise = {
optimise = { dates = [];
dates = []; automatic = true;
automatic = true;
};
}; };
} }