Add custom cursor
This commit is contained in:
parent
295fef53d6
commit
bf1b696b2a
1 changed files with 20 additions and 0 deletions
|
@ -5,6 +5,12 @@ let
|
||||||
|
|
||||||
user = config.users.users.tdpeuter.name;
|
user = config.users.users.tdpeuter.name;
|
||||||
installedPkgs = config.environment.systemPackages ++ config.home-manager.users.tdpeuter.home.packages;
|
installedPkgs = config.environment.systemPackages ++ config.home-manager.users.tdpeuter.home.packages;
|
||||||
|
|
||||||
|
cursor = {
|
||||||
|
package = pkgs.phinger-cursors;
|
||||||
|
name = "phinger-cursors";
|
||||||
|
size = 24;
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./dotfiles.nix
|
./dotfiles.nix
|
||||||
|
@ -66,6 +72,7 @@ in {
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
nsxiv # Lightweight image viewer
|
nsxiv # Lightweight image viewer
|
||||||
oh-my-zsh
|
oh-my-zsh
|
||||||
|
phinger-cursors # Cursor theme
|
||||||
qalculate-gtk # Calculator
|
qalculate-gtk # Calculator
|
||||||
spotify-adblock
|
spotify-adblock
|
||||||
tea # Gitea CLI
|
tea # Gitea CLI
|
||||||
|
@ -84,6 +91,14 @@ in {
|
||||||
statix
|
statix
|
||||||
vim-plug
|
vim-plug
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
pointerCursor = {
|
||||||
|
package = cursor.package;
|
||||||
|
name = cursor.name;
|
||||||
|
size = cursor.size;
|
||||||
|
gtk.enable = true;
|
||||||
|
x11.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# GNOME ricing
|
# GNOME ricing
|
||||||
|
@ -113,6 +128,11 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gtk = {
|
||||||
|
enable = true;
|
||||||
|
cursorTheme = cursor;
|
||||||
|
};
|
||||||
|
|
||||||
xdg = {
|
xdg = {
|
||||||
desktopEntries.spotify = {
|
desktopEntries.spotify = {
|
||||||
name = "Spotify";
|
name = "Spotify";
|
||||||
|
|
Loading…
Reference in a new issue