updated docs and flake

This commit is contained in:
bowlbird
2024-09-23 00:03:11 +00:00
parent 126c594b8d
commit 54cf1ff8d5

View File

@@ -60,19 +60,31 @@ Every one of these variables is also settable via the dispatcher, so you can cre
2. Run `hyprpm enable hyprEasymotion` 2. Run `hyprpm enable hyprEasymotion`
## NixOS (Flakes) ## NixOS (Flakes)
Please note, you should *also have hyprland as a flake input*.
Add this repo to your flake inputs: Add this repo to your flake inputs:
```Nix ```nix
inputs = { inputs = {
# ...
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; hyprland-easymotion = {
url = "github:bowlbird/hyprland-easymotion";
hyprland-easymotion = { inputs.hyprland.follows = "hyprland";
url = "github:bowlbird/hyprland-easymotion"; };
inputs.hyprland.follows = "hyprland"; # ...
};
}; };
outputs = { self, hyprland, ... } @ inputs:
# ...
``` ```
Add the plugin to your Hyprland Home Manager config:
```nix
wayland.windowManager.hyprland = {
# ...
plugins = [
inputs.hyprland-easymotion.packages.${pkgs.system}.hyprland-easymotion
];
# ...
};
# TODO # TODO
- [ ] Blur? - [ ] Blur?