File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,33 @@ To get hyprnotify you can either download the binary build by github actions. Or
93
93
``` sh
94
94
yay -S hyprnotify
95
95
```
96
+
97
+ ### NixOS
98
+ ` hyprnotify ` is available on NixOS unstable.
99
+ It is quite simple to add:
100
+ 1 . Add the unstable tarball:
101
+ ``` nix
102
+ let
103
+ unstableTarball =
104
+ fetchTarball
105
+ https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz;
106
+ in
107
+ # ...
108
+ ```
109
+
110
+ 2 . Add an overlay to use unstable packages
111
+ ``` nix
112
+ nixpkgs.config = {
113
+ packageOverrides = pkgs: {
114
+ unstable = import unstableTarball {
115
+ config = config.nixpkgs.config;
116
+ };
117
+ };
118
+ };
119
+ ```
120
+
121
+ 3 . Add ` unstable.hyprnotify ` to your ` environment.systemPackages `
122
+
96
123
### Other Linux Distributions
97
124
You can download the release binaries directly from the [ releases] ( https://github.com/codelif/hyprnotify/releases ) page.
98
125
You can’t perform that action at this time.
0 commit comments