# Define a user account. Don't forget to set a password with ‘passwd’. { config, pkgs, ... }: { users.users.adam = { isNormalUser = true; description = "Adam Rabjerg"; extraGroups = [ "networkmanager" "wheel" "docker" ]; packages = with pkgs; [ # Web firefox thunderbird nextcloud-client # Communication gajim signal-desktop # Text and office kate libreoffice-qt # media manipulation gimp # Terminal guake # entertainment spotify # dev vscodium kicad ansible # security yubioath-desktop nmap # Desktop ]; }; }