# ========================================== # USER CONFIGURATION # ========================================== { config, pkgs, ... }: { users.users.matiss = { isNormalUser = true; description = "Matiss"; extraGroups = [ "networkmanager" "wheel" "docker" "video" "render" "input" ]; shell = pkgs.zsh; hashedPassword = "$y$j9T$VCKe6/ZXyDtGgCjivz0L2/$EnTSVNqG.lF6V0YtCZSBa8rRLjXNw9WYYt8AjKqANzA"; }; # Core system packages (available to all users) environment.systemPackages = with pkgs; [ git vim wget curl ]; }