diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-06-06 13:14:55 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-06-06 13:14:55 +0530 |
commit | 334118d0801be0c79d98576814f823034eae2003 (patch) | |
tree | 4b02e16d043549bebd27821b912251287eb1931e /home/wayland | |
parent | 7437a37e9ae174033e336e5d29f435ec78df27e0 (diff) |
home/wayland/sway/theme: init
Diffstat (limited to 'home/wayland')
-rw-r--r-- | home/wayland/modules/sway/home.nix | 1 | ||||
-rw-r--r-- | home/wayland/modules/sway/theme.nix | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/home/wayland/modules/sway/home.nix b/home/wayland/modules/sway/home.nix index 0b42155..323a50b 100644 --- a/home/wayland/modules/sway/home.nix +++ b/home/wayland/modules/sway/home.nix @@ -22,6 +22,7 @@ in { imports = [ ./mako.nix + ./theme.nix ./swayidle.nix ./swaylock.nix ./i3status.nix diff --git a/home/wayland/modules/sway/theme.nix b/home/wayland/modules/sway/theme.nix new file mode 100644 index 0000000..8722d2e --- /dev/null +++ b/home/wayland/modules/sway/theme.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: { + dconf.enable = false; + + gtk = { + enable = true; + gtk3.extraConfig.gtk-application-prefer-dark-theme = 1; + }; + + home.pointerCursor = { + gtk.enable = true; + + name = "Adwaita"; + package = pkgs.gnome.adwaita-icon-theme; + }; +} |