mirror of
https://git.sr.ht/~neverness/wallpapers
synced 2024-11-24 02:01:11 +00:00
desktop | ||
dotfiles | ||
userstyles | ||
LICENSE | ||
README.md |
【 RAWPAPERS 】
This repo contains directly url to images (im too lazy ye) and .jpg files with paradise theme
For installation url to stylix needs that:
- stylix.nix
{
stylix.image = pkgs.fetchurl {
url = "..."; # COPY LINK TO IMAGE BELOW AND INSERT HERE
sha256 = "..."; # AFTER ERROR REBUILD YOU GET CHECKSUM
};
}
For installation .jpg paradised to stylix needs that:
- flake.nix
{
inputs.walls = { # WALLS
url = "sourcehut:~neverness/wallpapers?ref=main";
flake = false;
};
}
- stylix.nix
{ inputs, ... }: let wal = inputs.walls;
in {
stylix.image = "${wal}/desktop/wallpaper_name.jpg";
}