Restructured nixos home-manager config
This commit is contained in:
41
home/modules/gui-apps.nix
Normal file
41
home/modules/gui-apps.nix
Normal file
@@ -0,0 +1,41 @@
|
||||
{pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
feh
|
||||
vlc
|
||||
firefox
|
||||
zoom-us
|
||||
discord
|
||||
flameshot
|
||||
libreoffice
|
||||
pavucontrol
|
||||
virt-viewer
|
||||
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;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user