more fixups

This commit is contained in:
Barrett Ruth 2026-02-11 14:42:25 -05:00
parent 44d03fb8ad
commit 831806c2dc
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
6 changed files with 21 additions and 31 deletions

View file

@ -1,4 +1,5 @@
{
pkgs,
lib,
...
}:
@ -7,10 +8,13 @@ let
isNixOS = builtins.pathExists /etc/NIXOS;
in
{
home.packages = lib.mkIf isNixOS [ pkgs.hyprpaper ];
services.hyprpaper = {
enable = true;
package = lib.mkIf (!isNixOS) null;
settings = {
preload = [ "~/img/screen/wallpaper.jpg" ];
wallpaper = [ ",~/img/screen/wallpaper.jpg" ];
splash = false;
};