mirror of
https://github.com/AngelJumbo/gruvbox-wallpapers.git
synced 2026-08-05 13:42:28 +00:00
Merge pull request #92 from Gurjaka/main
docs: add installation instructions
This commit is contained in:
@@ -17,6 +17,37 @@ A place where to find gruvbox theme wallpapers.
|
||||
|
||||
I tend to accept any contributions, but let's keep the site with images that match or look good with the gruvbox's color scheme :').
|
||||
|
||||
|
||||
## Nix package
|
||||
|
||||
1. **Use [nix flakes](https://wiki.nixos.org/wiki/Flakes)**:
|
||||
|
||||
2. Add the following to your `flake.nix` file:
|
||||
|
||||
```nix
|
||||
inputs = {
|
||||
gruvbox-wallpapers.url = "github:AngelJumbo/gruvbox-wallpapers";
|
||||
# ...
|
||||
};
|
||||
```
|
||||
|
||||
3. Then, in your Home Manager configuration:
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.file = {
|
||||
"path/to/dir" = {
|
||||
source = inputs.gruvbox-wallpapers.packages."${pkgs.stdenv.hostPlatform.system}".default;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
## Disclaimer
|
||||
|
||||
Most of the images shared here are community contributions, and their original sources are often unknown. If you are the rightful owner of any image and would like it removed, please contact me by opening an issue. For any use beyond personal scope, I recommend performing a reverse image search to verify the origin.
|
||||
|
||||
Reference in New Issue
Block a user