{ config, pkgs, unstablePkgs, auxiliaryPkgs, ... }: { users.mutableUsers = false; users.users.mel = { isNormalUser = true; description = "Mel"; shell = pkgs.fish; extraGroups = [ "wheel" "dialout" "kvm" "networkmanager" "adbusers" ]; hashedPassword = "$y$j9T$4wGl.YJizIpcfFv0LyvLU0$7LLEkjIFWBOV.XXynReCOczBYNX0EZfMPIDB/bmmhhC"; # TODO: commented out pacckages are currently not available on ARM, and thus not on the # moissanite machine. filter them out in a better way. packages = (with pkgs; [ firefox thunderbird # tor-browser jetbrains-toolbox ]) ++ (with unstablePkgs; [ godot_4 ]) ++ (with auxiliaryPkgs; [ # TODO: get discord (or maybe an alternative client?) to work! # discord element-desktop obsidian ]); }; }