❄️ Dotfiles for our NixOS system configuration.
1# From https://github.com/isabelroses/dotfiles/blob/main/modules/darwin/nix.nix 2 3{ 4 nix = { 5 # nix gc works slightly differently on darwin, so we need to adjust the 6 # interval such that it works properly here. 7 gc.interval = { 8 Hour = 3; 9 Minute = 15; 10 }; 11 12 # we add more platforms here because of the limited number of darwin 13 # maintainers that exist, thus meaning less working packages for darwin. 14 settings.extra-platforms = [ 15 "aarch64-darwin" 16 "x86-64-darwin" 17 ]; 18 }; 19}