From d2aae677bcd50cb4db92235eee0853ca9fd82ab3 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sun, 15 Sep 2024 12:54:18 +0200 Subject: [PATCH] feat: cursor --- hosts/default/configuration.nix | 1 + hosts/default/home.nix | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index d7d0cf9..597c97a 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -115,6 +115,7 @@ wl-clipboard wofi waybar + banana-cursor nerdfonts gnumake gccgo diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 0e06920..e9dcdcf 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -73,6 +73,13 @@ EDITOR = "nvim"; }; + home.pointerCursor = { + package = pkgs.banana-cursor; + name = "Banana Cursor"; + gtk.enable = true; + x11.enable = true; + }; + # Let Home Manager install and manage itself. programs.home-manager.enable = true; }