{ config, pkgs, unstablePkgs, auxiliaryPkgs, ... }: { users.mutableUsers = false; users.users.mel = { isNormalUser = true; description = "Mel"; shell = pkgs.fish; extraGroups = [ "wheel" "kvm" "networkmanager" "adbusers" ]; hashedPassword = "$y$j9T$4wGl.YJizIpcfFv0LyvLU0$7LLEkjIFWBOV.XXynReCOczBYNX0EZfMPIDB/bmmhhC"; packages = (with pkgs; [ firefox thunderbird tor-browser jetbrains-toolbox ]) ++ (with unstablePkgs; [ godot_4 ]) ++ (with auxiliaryPkgs; [ discord element-desktop obsidian vscode ]); }; }