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
bemenu # wayland clone of dmenu
mako # notification system developed by swaywm maintainer
(orchis-theme.override { tweaks = [ "compact" "solid" ]; })
];
# enable sway window manager

View file

@ -52,6 +52,8 @@ let
};
};
};
orchis_theme_compact = (pkgs.orchis-theme.override { tweaks = [ "compact" "solid" ]; });
accent = accents.red;
color = themes.dark.color;
@ -85,13 +87,15 @@ in {
imagemagick
mpv
xfce.thunar
liberation_ttf
hack-font
font-awesome_5
fira-code
(nerdfonts.override { fonts = [ "FiraCode" "Hack" ]; })
(orchis-theme.override { tweaks = [ "compact" "solid" ]; })
orchis_theme_compact
];
programs.fish.enable = true;
@ -499,4 +503,20 @@ in {
enable = 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;
};
};
}