dotfiles/home/modules/gui-apps.nix
2025-03-15 22:14:49 -07:00

51 lines
815 B
Nix

{pkgs, ... }: {
home.packages = with pkgs; [
feh
vlc
dconf
okular
zoom-us
discord
twinkle
audacity
flameshot
libreoffice
pavucontrol
easyeffects
virt-viewer
qutebrowser
nextcloud-client
protonmail-desktop
bitwarden-desktop
];
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-backgroundremoval
];
};
dconf = {
enable = true;
settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
};
};
gtk = {
enable = true;
theme = {
name = "Materia-dark";
package = pkgs.materia-theme;
};
};
home.file = {
".config/qutebrowser/config.py".source = ../../dotfiles/.config/qutebrowser/config.py;
};
}