diff options
| author | caley <195605706+cqley@users.noreply.github.com> | 2026-07-22 01:03:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-22 01:03:35 +0200 |
| commit | 96df4f82b8e207ddde601522721b43818b396a46 (patch) | |
| tree | bba09ffcd950e825435aaa050ca9c7d746ec67a5 /nixos | |
| parent | 7b5719b1595acb0d2835d00f5c464804be9a5051 (diff) | |
Update box.nix
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/hosts/box/box.nix | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/nixos/hosts/box/box.nix b/nixos/hosts/box/box.nix index 55ea0cd..51e4ee0 100644 --- a/nixos/hosts/box/box.nix +++ b/nixos/hosts/box/box.nix @@ -80,15 +80,15 @@ enable = true; gtk.enable = true; x11.enable = true; - package = pkgs.kdePackages.breeze; - name = "breeze_cursors"; - size = 16; + package = pkgs.apple-cursor; + name = "macOS"; + size = 20; }; home.sessionVariables = { - XCURSOR_THEME = "breeze_cursors"; - XCURSOR_SIZE = "16"; - QT_CURSOR_SIZE = "16"; + XCURSOR_THEME = "macOS"; + XCURSOR_SIZE = "20"; + QT_CURSOR_SIZE = "20"; QT_QPA_PLATFORMTHEME = "kde"; }; @@ -104,14 +104,5 @@ style.name = "breeze"; }; - "kdeglobals".source = pkgs.runCommand "breeze-dark-white" {} '' - sed -E \ - -e 's/61,174,233/255,255,255/g' \ - -e 's/24,115,204/255,255,255/g' \ - -e 's/AccentColor=[0-9]+,[0-9]+,[0-9]+/AccentColor=255,255,255/' \ - "${pkgs.kdePackages.breeze}/share/color-schemes/BreezeDark.colors" > $out - ''; -}; - programs.home-manager.enable = true; } |
