{pkgs, ...}: { config = { system.stateVersion = "24.05"; time.timeZone = "America/New_York"; nix.settings = { experimental-features = ["flakes" "nix-command"]; trusted-users = ["@wheel"]; substituters = [" https://cache.wanderingcrow.net/main"]; trusted-public-keys = ["main:w2Ryiog6zSARbqXfTTYZmhg+FrEodWjCgyy9tYLZIAw="]; }; environment.variables = { EDITOR = "nvim"; VISUAL = "nvim"; NIXPKGS_ALLOW_UNFREE = 1; }; fonts.packages = with pkgs; [ font-awesome nerd-fonts.noto nerd-fonts.hack nerd-fonts.jetbrains-mono ]; }; }