diff options
-rw-r--r-- | hosts/common/optional/services/wayland.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/hosts/common/optional/services/wayland.nix b/hosts/common/optional/services/wayland.nix index 03c4558..218857a 100644 --- a/hosts/common/optional/services/wayland.nix +++ b/hosts/common/optional/services/wayland.nix @@ -50,7 +50,18 @@ package = pkgs.master.firefox; }; - regreet.enable = true; + regreet= { + enable = true; + settings = { + GTK = lib.mkForce { + application_prefer_dark_theme = true; + cursor_theme_name = "catppuccin-mocha-blue-cursors"; + font_name = "Work Sans 16"; + icon_theme_name = "Papirus-Dark"; + theme_name = "catppuccin-mocha-blue-standard"; + }; + }; + }; sway = { enable = true; |