From 774b7c0a7787e0c3b08102ac09ab97e481408d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Sun, 7 Jun 2026 20:19:04 +0200 Subject: [PATCH] hypr-dynamic-cursor: use nixpkgs master --- flake.lock | 20 ++++++++++++-------- modules/applications/hyprland.nix | 4 ++-- modules/hosts/desktop.nix | 2 +- modules/hosts/laptop.nix | 2 +- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/flake.lock b/flake.lock index 98d1feb..b79be45 100755 --- a/flake.lock +++ b/flake.lock @@ -203,16 +203,20 @@ "type": "github" } }, - "nixpkgs-local": { + "nixpkgs-master": { "locked": { - "lastModified": 1780728942, - "narHash": "sha256-NjXPlIssFzJ8vazKaihsW773r/Kq2TTby7FKBlbWIg4=", - "path": "/home/tomasr/devel/fugit2-gpgme", - "type": "path" + "lastModified": 1780855885, + "narHash": "sha256-EN3i7EgqzkNmqAzZ1u2H68mYV3VWzj+Oa/Nc1uVkNwY=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "a8d1e6ca61f01d3cb57c3b553bea3bccea1ef6be", + "type": "github" }, "original": { - "path": "/home/tomasr/devel/fugit2-gpgme", - "type": "path" + "owner": "nixos", + "ref": "master", + "repo": "nixpkgs", + "type": "github" } }, "nixpkgs-notifier": { @@ -325,7 +329,7 @@ "microPlugins-vivify": "microPlugins-vivify", "nixos-grub-themes": "nixos-grub-themes", "nixpkgs": "nixpkgs_2", - "nixpkgs-local": "nixpkgs-local", + "nixpkgs-master": "nixpkgs-master", "nixpkgs-notifier": "nixpkgs-notifier", "nixpkgs-unstable": "nixpkgs-unstable", "notewrapper": "notewrapper" diff --git a/modules/applications/hyprland.nix b/modules/applications/hyprland.nix index e9e25d4..91c1cba 100644 --- a/modules/applications/hyprland.nix +++ b/modules/applications/hyprland.nix @@ -55,7 +55,7 @@ ]; }; }; - flake.homeModules.hyprland = {pkgs-unstable, ...}: let + flake.homeModules.hyprland = {pkgs-unstable, pkgs-master, ...}: let wallpaper = ../../assets/wallpaper1.jpg; in { #refer to https://wiki.hypr.land/Nix/Hyprland-on-Home-Manager/ @@ -66,7 +66,7 @@ wayland.windowManager.hyprland.plugins = [ #pkgs-unstable.hyprlandPlugins.hyprspace # currently broken #self.packages.${pkgs-unstable.system}.hypr-dynamic-cursors-manual - #pkgs-unstable.hyprlandPlugins.hypr-dynamic-cursors # currently broken + pkgs-master.hyprlandPlugins.hypr-dynamic-cursors # currently broken ]; wayland.windowManager.hyprland.configType = "hyprlang"; wayland.windowManager.hyprland.settings = { diff --git a/modules/hosts/desktop.nix b/modules/hosts/desktop.nix index fe127bf..3342ebe 100644 --- a/modules/hosts/desktop.nix +++ b/modules/hosts/desktop.nix @@ -101,7 +101,7 @@ useUserPackages = true; extraSpecialArgs = { - inherit (self) pkgs-unstable; + inherit (self) pkgs-unstable pkgs-master; inherit self; }; }; diff --git a/modules/hosts/laptop.nix b/modules/hosts/laptop.nix index df6e5e4..1f5d426 100644 --- a/modules/hosts/laptop.nix +++ b/modules/hosts/laptop.nix @@ -104,7 +104,7 @@ useUserPackages = true; extraSpecialArgs = { - inherit (self) pkgs-unstable pkgs-local; + inherit (self) pkgs-unstable pkgs-local pkgs-master; inherit self; }; };