Add custom cursor

This commit is contained in:
Tibo De Peuter 2023-11-09 19:46:23 +01:00
parent 295fef53d6
commit bf1b696b2a

View file

@ -5,6 +5,12 @@ let
user = config.users.users.tdpeuter.name;
installedPkgs = config.environment.systemPackages ++ config.home-manager.users.tdpeuter.home.packages;
cursor = {
package = pkgs.phinger-cursors;
name = "phinger-cursors";
size = 24;
};
in {
imports = [
./dotfiles.nix
@ -66,6 +72,7 @@ in {
nextcloud-client
nsxiv # Lightweight image viewer
oh-my-zsh
phinger-cursors # Cursor theme
qalculate-gtk # Calculator
spotify-adblock
tea # Gitea CLI
@ -84,6 +91,14 @@ in {
statix
vim-plug
]);
pointerCursor = {
package = cursor.package;
name = cursor.name;
size = cursor.size;
gtk.enable = true;
x11.enable = true;
};
};
# GNOME ricing
@ -113,6 +128,11 @@ in {
};
};
gtk = {
enable = true;
cursorTheme = cursor;
};
xdg = {
desktopEntries.spotify = {
name = "Spotify";