He sudo on my nixos-rebuild till I switch
0

Configure Feed

Select the types of activity you want to include in your feed.

i fucking hate gtk

Madeline Hashcube (Jun 29, 2026, 9:31 PM -0500) 8ccdd875 24ad6fb9

+20 -5
+4 -1
users/hashcube/theming/cursor.nix
··· 4 4 home.pointerCursor = { 5 5 name = "catppuccin-mocha-pink-cursors"; 6 6 package = pkgs.catppuccin-cursors.mochaPink; 7 - gtk.enable = true; 7 + gtk = { 8 + enable = true; 9 + size = 32; 10 + }; 8 11 x11.enable = true; 9 12 }; 10 13 }
+16 -4
users/hashcube/theming/gtk.nix
··· 1 - { pkgs, config, ... }: 1 + { pkgs, ... }: 2 2 3 - { 4 - gtk = { 5 - gtk4.theme = config.gtk.theme; 3 + let 4 + config = { 6 5 enable = true; 7 6 font = { 8 7 name = "IosevkaHashcube Nerd Font Mono"; 9 8 package = pkgs.iosevka-hashcube; 9 + size = 11; 10 10 }; 11 11 iconTheme = { 12 12 name = "Papirus-Dark"; 13 13 }; 14 + cursorTheme = { 15 + name = "catppuccin-mocha-pink-cursors"; 16 + package = pkgs.catppuccin-cursors.mochaPink; 17 + size = 32; 18 + }; 14 19 theme = { 15 20 name = "catppuccin-mocha-pink-standard"; 16 21 package = pkgs.catppuccin-gtk.override { ··· 18 23 accents = [ "pink" ]; 19 24 }; 20 25 }; 26 + }; 27 + in { 28 + gtk = { 29 + inherit (config) enable font iconTheme cursorTheme theme; 30 + gtk2 = config; 31 + gtk3 = config; 32 + gtk4 = config; 21 33 }; 22 34 }