{ pkgs, ... }: { # Define a user account. Don't forget to set a password with ‘passwd’. users.users.andy = { isNormalUser = true; description = "andy"; extraGroups = [ "networkmanager" "input" "wheel" "video" "audio" "tss" ]; shell = pkgs.fish; packages = with pkgs; [ telegram-desktop vscodium ]; }; # Change runtime directory size services.logind.extraConfig = "RuntimeDirectorySize=8G"; }