{ config, lib, pkgs, ... }: let unstable = import {}; packages = (with pkgs; [ anki discord firefox-devedition krita qbittorrent spotify vlc ]) ++ (with unstable; [ neovide ]); in { # Define a user account. Don't forget to set a password with ‘passwd’. users.users.kamov = { isNormalUser = true; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. packages = packages; shell = pkgs.fish; }; }