diff options
| author | caley <u65487754@gmail.com> | 2026-05-21 19:36:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-21 19:36:37 +0200 |
| commit | eb7c254884d809ebb7a65f73a89dfd43aaae7bc7 (patch) | |
| tree | 8cefe6548a47a6657957e2e9caca6da3c16dd998 /nixos/cat.nix | |
| parent | ce41cf28a6e93d261bf13231a8f66a08ae12ada2 (diff) | |
Update cat.nix
Diffstat (limited to 'nixos/cat.nix')
| -rw-r--r-- | nixos/cat.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nixos/cat.nix b/nixos/cat.nix index f526f90..57db145 100644 --- a/nixos/cat.nix +++ b/nixos/cat.nix @@ -207,5 +207,19 @@ home.packages = with pkgs; [ '') ]; +home.pointerCursor = { + gtk.enable = true; + x11.enable = true; + package = pkgs.kdePackages.breeze; + name = "breeze_cursors"; + size = 16; +}; + +home.sessionVariables = { + XCURSOR_THEME = "breeze_cursors"; + XCURSOR_SIZE = "16"; + QT_CURSOR_SIZE = "16"; +}; + programs.home-manager.enable = true; } |
