configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
1{pkgs, ...}: {
2 imports = [../users/devin.nix];
3
4 nixpkgs = {
5 overlays = [
6 (import ../../overlays/beetsfix.nix)
7 ];
8 config = {
9 permittedInsecurePackages = ["olm-3.2.16"];
10 allowUnfree = true;
11 };
12 };
13
14 nix = {
15 gc = {
16 automatic = true;
17 options = "--delete-older-than 7d";
18 };
19 optimise.automatic = true;
20 settings.experimental-features = ["flakes" "nix-command"];
21 };
22
23 programs.fish.enable = true;
24 environment.shells = [pkgs.fish];
25}