feat(apps): add wallpaper engine support in Nix configuration

This commit is contained in:
uttarayan21
2025-10-21 12:29:19 +05:30
parent 907bb67f28
commit 5fe2e20829
3 changed files with 19 additions and 4 deletions

View File

@@ -38,5 +38,6 @@ lib.optionalAttrs device.hasGui {
./zed.nix
./zen.nix
./vial.nix
./wallpaperengine.nix
];
}

View File

@@ -0,0 +1,9 @@
{
pkgs,
lib,
...
}: {
home.packages = lib.optionals pkgs.stdenv.isLinux [
pkgs.linux-wallpaperengine
];
}