diff options
| author | Grisha Shipunov | 2025-02-25 22:21:34 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-03-17 12:47:38 +0100 |
| commit | 0d5bc74f8840864c28d1670c5a1c4cced81f1f2e (patch) | |
| tree | c5db24fb67f437b35928ee2fa1134b49452ca7c3 /hosts/toaster/0xa-home.nix | |
| parent | 5464226af78c9c461506ab75d0db3acfa22541fa (diff) | |
some initial work on niri
Diffstat (limited to 'hosts/toaster/0xa-home.nix')
| -rw-r--r-- | hosts/toaster/0xa-home.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/hosts/toaster/0xa-home.nix b/hosts/toaster/0xa-home.nix new file mode 100644 index 0000000..b3ff5eb --- /dev/null +++ b/hosts/toaster/0xa-home.nix @@ -0,0 +1,21 @@ +{ pkgs, ... }: +{ + home.stateVersion = "24.11"; + + home.pointerCursor = { + name = "Banana"; + size = 32; + package = pkgs.banana-cursor; + x11.enable = true; + gtk.enable = true; + }; + + gtk = { + enable = true; + cursorTheme = { + name = "Banana"; + size = 32; + package = pkgs.banana-cursor; + }; + }; +} |
