1{
2 nix = {
3 gc = {
4 automatic = true;
5 options = "--delete-older-than 14d";
6 };
7
8 optimise.automatic = true;
9
10 settings = {
11 experimental-features = [
12 "nix-command"
13 "flakes"
14 ];
15
16 warn-dirty = false;
17 };
18 };
19 nixpkgs.config.allowUnfree = true;
20}