Bohdan's terminal configuration
0
fork

Configure Feed

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

nix: disabled KDE Plasma

bpavuk 07aa0ce1 08eb6ef2

+15 -3
+2 -2
nixos/home/life/default.nix
··· 91 91 enable = true; 92 92 gtk.enable = true; 93 93 94 - package = pkgs.kdePackages.breeze-icons; 95 - name = "Breeze Dark"; 94 + package = pkgs.kdePackages.breeze; 95 + name = "breeze_cursors"; 96 96 }; 97 97 }
+2 -1
nixos/hosts/bpavuk-nixos/default.nix
··· 11 11 ../virtualization.nix 12 12 ../cachix.nix 13 13 ./docker.nix 14 - ../../desktop/kde.nix 14 + # ../../desktop/kde.nix 15 15 ../../desktop/niri.nix 16 16 # ../../desktop/hyprland.nix 17 17 ./networking.nix 18 + ../cursors.nix 18 19 ]; 19 20 20 21 boot.loader.systemd-boot.enable = true;
+11
nixos/hosts/cursors.nix
··· 1 + { pkgs, ... }: 2 + 3 + { 4 + environment.systemPackages = with pkgs; [ 5 + kdePackages.breeze 6 + ]; 7 + 8 + environment.variables = { 9 + XCURSOR_THEME = "breeze_cursors"; 10 + }; 11 + }