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;
|
||||
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";
|
||||
|
|
Loading…
Reference in a new issue