configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
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}