48 lines
702 B
Nix
48 lines
702 B
Nix
{pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
feh
|
|
vlc
|
|
dconf
|
|
mupdf
|
|
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;
|
|
};
|
|
};
|
|
|
|
|
|
}
|