From c412df0c1a6b7e6d415a9f275f812761726779dd Mon Sep 17 00:00:00 2001 From: Alexandre ABRIOUX Date: Sun, 9 Jun 2024 17:01:14 +0200 Subject: [PATCH 1/2] docs: explain how to install the package --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index f381a26..2ac2ad5 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,14 @@ yay -S rose-pine-hyprcursor } ``` +2. Install the package in your `configuration.nix` + +```nix + environment.systemPackages = stable-packages ++ unstable-packages ++ [ + inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default + ]; +``` + ## ⚒️ Usage Add the `HYPRCURSOR_THEME` environment variable to your `hyprland` config From 9af3e2aef28acacfa515b5a8f3c12d93c5ac3bdd Mon Sep 17 00:00:00 2001 From: Alexandre ABRIOUX Date: Tue, 11 Jun 2024 20:37:12 +0200 Subject: [PATCH 2/2] Update README.md Co-authored-by: Nico Domino --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ac2ad5..c586e06 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ yay -S rose-pine-hyprcursor 2. Install the package in your `configuration.nix` ```nix - environment.systemPackages = stable-packages ++ unstable-packages ++ [ + environment.systemPackages = [ inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default ]; ```