my nix flake.
at azalea 23 lines 286 B view raw
1{ ... }: 2{ 3 nix = { 4 gc = { 5 automatic = true; 6 options = "--delete-older-than 3d"; 7 }; 8 9 settings = { 10 experimental-features = [ 11 "nix-command" 12 "flakes" 13 ]; 14 }; 15 }; 16 17 nixpkgs = { 18 config = { 19 allowUnfree = true; 20 }; 21 }; 22 23}