further refinements

This commit is contained in:
Barrett Ruth 2026-02-10 23:09:34 -05:00
parent 0c2b2cee68
commit 2d030ab678
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
14 changed files with 330 additions and 282 deletions

View file

@ -0,0 +1,18 @@
{
lib,
...
}:
let
isNixOS = builtins.pathExists /etc/NIXOS;
in
{
services.hyprpaper = {
enable = true;
package = lib.mkIf (!isNixOS) null;
settings = {
wallpaper = [ ",~/img/screen/wallpaper.jpg" ];
splash = false;
};
};
}