my laptops nixos configuration, hopefully less messy this time (but still a lil' messy)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
306B

  1. {
  2. nix = {
  3. autoOptimiseStore = true;
  4. gc = {
  5. automatic = true;
  6. dates = "weekly";
  7. options = "--delete-older-than 30d";
  8. };
  9. extraOptions = ''
  10. min-free = ${toString (100*1024*1024)} # 100mb
  11. max-free = ${toString (1024*1024*1024)} # free to 1gb free
  12. '';
  13. };
  14. }