{ config, pkgs, security, ... }: { users.mutableUsers = false; users.users.mel = { isNormalUser = true; description = "Mel"; shell = pkgs.fish; extraGroups = [ "networkmanager" "wheel" ]; hashedPassword = security.password; openssh.authorizedKeys.keys = security.keys; packages = (with pkgs; []); }; }