mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 20:21:53 +00:00
Add Bibata cursor theme support for Hyprland and update environment variables
This commit is contained in:
@@ -55,6 +55,7 @@
|
|||||||
|
|
||||||
# Wayland utilities
|
# Wayland utilities
|
||||||
wl-clipboard # Clipboard for Wayland
|
wl-clipboard # Clipboard for Wayland
|
||||||
|
hyprcursor # Hyprland cursor theme support
|
||||||
|
|
||||||
# Ricing essentials
|
# Ricing essentials
|
||||||
# hyprpaper # Wallpaper daemon
|
# hyprpaper # Wallpaper daemon
|
||||||
@@ -63,6 +64,7 @@
|
|||||||
# pywal # Color scheme generator
|
# pywal # Color scheme generator
|
||||||
|
|
||||||
# Themes and icons
|
# Themes and icons
|
||||||
|
bibata-cursors # Bibata cursor theme
|
||||||
# papirus-icon-theme
|
# papirus-icon-theme
|
||||||
# arc-theme
|
# arc-theme
|
||||||
];
|
];
|
||||||
@@ -158,6 +160,11 @@
|
|||||||
# name = "Papirus-Dark";
|
# name = "Papirus-Dark";
|
||||||
# package = pkgs.papirus-icon-theme;
|
# package = pkgs.papirus-icon-theme;
|
||||||
# };
|
# };
|
||||||
|
cursorTheme = {
|
||||||
|
name = "Bibata-Modern-Ice";
|
||||||
|
package = pkgs.bibata-cursors;
|
||||||
|
size = 24;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Qt theming
|
# Qt theming
|
||||||
@@ -165,6 +172,15 @@
|
|||||||
# enable = true;
|
# enable = true;
|
||||||
# platformTheme.name = "gtk";
|
# platformTheme.name = "gtk";
|
||||||
# };
|
# };
|
||||||
|
|
||||||
|
# Cursor theme for Hyprland
|
||||||
|
home.pointerCursor = {
|
||||||
|
name = "Bibata-Modern-Ice";
|
||||||
|
package = pkgs.bibata-cursors;
|
||||||
|
size = 24;
|
||||||
|
gtk.enable = true;
|
||||||
|
x11.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Flatpaks are managed in system/flatpak.nix
|
# Flatpaks are managed in system/flatpak.nix
|
||||||
|
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
# Environment variables
|
# Environment variables
|
||||||
env = [
|
env = [
|
||||||
"XCURSOR_SIZE,24"
|
"XCURSOR_SIZE,24"
|
||||||
|
"XCURSOR_THEME,Bibata-Modern-Ice"
|
||||||
|
"HYPRCURSOR_THEME,Bibata-Modern-Ice"
|
||||||
|
"HYPRCURSOR_SIZE,24"
|
||||||
"QT_QPA_PLATFORMTHEME,qt5ct"
|
"QT_QPA_PLATFORMTHEME,qt5ct"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user