{pkgs, ...}: { imports = [../users/devin.nix]; nixpkgs = { overlays = [ (import ../../overlays/beetsfix.nix) ]; config = { permittedInsecurePackages = ["olm-3.2.16"]; allowUnfree = true; }; }; nix = { gc = { automatic = true; options = "--delete-older-than 7d"; }; optimise.automatic = true; settings.experimental-features = ["flakes" "nix-command"]; }; programs.fish.enable = true; environment.shells = [pkgs.fish]; }