diff --git a/flake.lock b/flake.lock index 620bec7..0dc98a7 100644 --- a/flake.lock +++ b/flake.lock @@ -90,11 +90,11 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1750753596, - "narHash": "sha256-/XQ4k8fUYrYe+utV0aCSHT9wB0wyw/E2IzwHxYySvGc=", + "lastModified": 1750782371, + "narHash": "sha256-zY7iFqVYiHesvmBbJOfkGcgONicJz/UFoMVZ8XbrPGM=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "b13d55077455690a9b4e25e4077012f3ac724e2c", + "rev": "b1b988141b9541453a15a90b52a0ab0896a732cd", "type": "github" }, "original": { @@ -415,11 +415,11 @@ ] }, "locked": { - "lastModified": 1750730235, - "narHash": "sha256-rZErlxiV7ssvI8t7sPrKU+fRigNc2KvoKZG3gtUtK50=", + "lastModified": 1750781171, + "narHash": "sha256-39oPt8TJZmt3bNEKBcwB+QuasiavRDwM5jkw6UkRb98=", "owner": "nix-community", "repo": "home-manager", - "rev": "d07e9cceb4994ed64a22b9b36f8b76923e87ac38", + "rev": "a4bac2b9ba2f9bd68032880da8ae6b44fbc46047", "type": "github" }, "original": { @@ -1156,16 +1156,16 @@ }, "nixpkgs_6": { "locked": { - "lastModified": 1750772819, - "narHash": "sha256-P99ZtOI9GxNbrCWe5hKhfCscmoNDp6JMSZxWwuxRWeA=", + "lastModified": 1750506804, + "narHash": "sha256-VLFNc4egNjovYVxDGyBYTrvVCgDYgENp5bVi9fPTDYc=", "owner": "nixos", "repo": "nixpkgs", - "rev": "1795b08791bf8b17292d23df49474fdcb11dc929", + "rev": "4206c4cb56751df534751b058295ea61357bbbaa", "type": "github" }, "original": { "owner": "nixos", - "ref": "master", + "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 6f48cc4..85e1585 100644 --- a/flake.nix +++ b/flake.nix @@ -3,8 +3,8 @@ inputs = { nixos-hardware.url = "github:NixOS/nixos-hardware"; - # nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - nixpkgs.url = "github:nixos/nixpkgs/master"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + # nixpkgs.url = "github:nixos/nixpkgs/master"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05"; diff --git a/modules/home/desktop.nix b/modules/home/desktop.nix index a8239a4..931ae6d 100644 --- a/modules/home/desktop.nix +++ b/modules/home/desktop.nix @@ -151,6 +151,8 @@ mangohud dualsensectl.out + bibata-cursors + ]; home.pointerCursor = { @@ -269,7 +271,7 @@ xdg.portal = { enable = true; - configPackages = [ pkgs.niri-unstable ]; + configPackages = [ pkgs.niri-stable ]; extraPortals = with pkgs; [ xdg-desktop-portal-gnome xdg-desktop-portal-gtk diff --git a/modules/system/niri.nix b/modules/system/niri.nix index 91602c1..42af734 100644 --- a/modules/system/niri.nix +++ b/modules/system/niri.nix @@ -2,6 +2,6 @@ { programs.niri = { enable = true; - package = pkgs.niri-unstable; + package = pkgs.niri-stable; }; }