Commit fd33c3a
Changed files (2)
modules
desktop
shell
plasma6
options
modules/desktop/shell/plasma6/options/appearance.nix
@@ -19,6 +19,10 @@
theme = "default";
colorScheme = "CatppuccinMacchiatoMauve";
iconTheme = "breeze-dark";
+ cursor = {
+ size = 24;
+ theme = config.home.pointerCursor.name;
+ };
};
panels = [
modules/desktop/cursor.nix
@@ -0,0 +1,11 @@
+{
+ flake.modules.homeManager.desktop = {pkgs, ...}: {
+ home.pointerCursor = {
+ gtk.enable = true;
+ x11.enable = true;
+ package = pkgs.bibata-cursors;
+ name = "Bibata-Modern-Classic";
+ size = 24;
+ };
+ };
+}