From 4830746ac0a3a4c4ffc055c6447c2048bf4ea1cf Mon Sep 17 00:00:00 2001 From: Javier Feliz Date: Sun, 10 Aug 2025 01:22:17 -0400 Subject: [PATCH] Update README :) --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cafe4a6..2a7d143 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,24 @@ changes as you work. ## Installation To install it permanently, you just have to copy the contents of the repo -to `~/.config/quickshell`. Do that how you must. \ No newline at end of file +to `~/.config/quickshell`. Do that how you must. + +### Nix Flake (The Real Cool Way) + +Add this to your `flake.nix`. Make sure you have the home manager module. + +```nix +inputs = { +hyprshell.url = "git+https://gitgud.foo/thegrind/hypr-shell.git"; +}; +``` + +Then in your `configuration.nix` + +```nix +# Enable home manager +home-manager = { + extraSpecialArgs = { inherit inputs; }; + users.[your username].imports = inputs.hyprshell.homeManagerModules.default; +} +``` \ No newline at end of file