diff --git a/home/gtk.nix b/home/gtk.nix index 432c2165..b32f3292 100644 --- a/home/gtk.nix +++ b/home/gtk.nix @@ -9,7 +9,7 @@ in cursorTheme = { package = phinger-cursors; - name = "phinger-cursors"; + name = "phinger-cursors-dark"; }; gtk3.extraConfig = { diff --git a/home/xcursor.nix b/home/xcursor.nix index 658b700f..1a32c11c 100644 --- a/home/xcursor.nix +++ b/home/xcursor.nix @@ -1,6 +1,6 @@ { home.file.".icons/default/index.theme".text = /* ini */ '' [icon theme] - Inherits=phinger-cursors + Inherits=phinger-cursors-dark ''; } diff --git a/modules/desktop.nix b/modules/desktop.nix index ecead7cd..1ffa9ba6 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -178,7 +178,7 @@ in cursor = { package = phinger-cursors; - name = "phinger-cursors"; + name = "phinger-cursors-dark"; size = 24; }; diff --git a/overlays/phinger-cursors.nix b/overlays/phinger-cursors.nix deleted file mode 100644 index d3744073..00000000 --- a/overlays/phinger-cursors.nix +++ /dev/null @@ -1,10 +0,0 @@ -final: prev: { - phinger-cursors = prev.phinger-cursors.overrideAttrs (oldAttrs: rec { - version = "1.1"; - - src = prev.fetchurl { - url = "https://github.com/phisch/phinger-cursors/releases/download/v${version}/phinger-cursors-variants.tar.bz2"; - sha256 = "sha256-II+1x+rcjGRRVB8GYkVwkKVHNHcNaBKRb6C613901oc="; - }; - }); -}