{ pkgs, ... }: { imports = [ ./boot-config.nix ]; users.users.artemis = { isNormalUser = true; description = "Artemis Tosini"; extraGroups = [ "wheel" ]; initialPassword = "toor"; }; services.sshd.enable = true; boot.loader.stand.enable = true; nix.settings = { trusted-users = [ "@wheel" ]; experimental-features = [ "nix-command" "flakes" ]; }; environment.variables.EDITOR = "nvim"; environment.systemPackages = with pkgs; [ gitMinimal htop hyfetch neovim nix-top tmux unzip zip ]; }