configurations for my servers and desktops
nix nixos flake dots dotfiles
at 60ff535aedbbfe8a213c4dbda7d14010be28fa53 17 lines 351 B view raw
1{pkgs, ...}: { 2 imports = [../users/devin.nix]; 3 4 nix = { 5 gc = { 6 automatic = true; 7 options = "--delete-older-than 7d"; 8 }; 9 optimise.automatic = true; 10 settings.experimental-features = ["flakes" "nix-command"]; 11 }; 12 13 nixpkgs.config.allowUnfree = true; 14 15 programs.fish.enable = true; 16 environment.shells = [pkgs.fish]; 17}