This commit is contained in:
Leonardo Eugênio 2022-06-13 22:21:47 -03:00
parent 18ba4ba9c1
commit eceef78218
2 changed files with 24 additions and 1 deletions

View file

@ -158,6 +158,9 @@ in
wl-clipboard # wl-copy and wl-paste for copy/paste from stdin / stdout wl-clipboard # wl-copy and wl-paste for copy/paste from stdin / stdout
bemenu # wayland clone of dmenu bemenu # wayland clone of dmenu
mako # notification system developed by swaywm maintainer mako # notification system developed by swaywm maintainer
(orchis-theme.override { tweaks = [ "compact" "solid" ]; })
]; ];
# enable sway window manager # enable sway window manager

View file

@ -52,6 +52,8 @@ let
}; };
}; };
}; };
orchis_theme_compact = (pkgs.orchis-theme.override { tweaks = [ "compact" "solid" ]; });
accent = accents.red; accent = accents.red;
color = themes.dark.color; color = themes.dark.color;
@ -85,13 +87,15 @@ in {
imagemagick imagemagick
mpv mpv
xfce.thunar
liberation_ttf liberation_ttf
hack-font hack-font
font-awesome_5 font-awesome_5
fira-code fira-code
(nerdfonts.override { fonts = [ "FiraCode" "Hack" ]; }) (nerdfonts.override { fonts = [ "FiraCode" "Hack" ]; })
(orchis-theme.override { tweaks = [ "compact" "solid" ]; }) orchis_theme_compact
]; ];
programs.fish.enable = true; programs.fish.enable = true;
@ -499,4 +503,20 @@ in {
enable = true; enable = true;
indicator = true; indicator = true;
}; };
gtk = {
enable = true;
theme = {
name = "Orchis-Red-Dark-Compact";
package = orchis_theme_compact;
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
cursorTheme = {
name = "capitaine-cursors";
package = pkgs.capitaine-cursors;
};
};
} }