{ config, lib, pkgs, ... }: let unstable = import {}; packages = (with pkgs; [ anki discord krita prismlauncher qbittorrent spotify vlc ]) ++ (with unstable; [ neovide ]); in { programs.firefox = { enable = true; package = pkgs.firefox-devedition; preferences = { "widget.use-xdg-desktop-portal.file-picker" = 1; "widget.use-xdg-desktop-portal.mime-handler" = 1; }; }; users.users.kamov = { isNormalUser = true; extraGroups = [ "wheel" ]; # Enable sudo packages = packages; shell = pkgs.fish; }; }