{ pkgs, ... }: { nixpkgs = { config.allowUnfree = true; }; nix = { gc.options = "--delete-older-than 30d"; optimise.automatic = true; extraOptions = '' experimental-features = nix-command flakes ''; }; users.users = { jay = { description = "Jay Carter"; shell = pkgs.bash; }; }; }