diff --git a/system/configuration.nix b/system/configuration.nix index 6a37ca6..88c6a8c 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -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 diff --git a/user/home.nix b/user/home.nix index f59b12e..48d85bc 100644 --- a/user/home.nix +++ b/user/home.nix @@ -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; + }; + }; }