removed wpaperd again

This commit is contained in:
vali 2024-07-24 17:53:40 +02:00
commit ce13045735
4 changed files with 1 additions and 25 deletions

View file

@ -1,22 +0,0 @@
{
lib,
pkgs,
config,
}: let
inherit (config.modules.other.system) username;
cfg = config.modules.usrEnv.services.wpaperd;
inherit (lib) mkIf;
in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.wpaperd = {
enable = true;
package = pkgs.wpaperd;
settings.any = {
mode = "center";
path = "/home/vali/projects/nichts/assets/wallpapers/river.png";
};
};
};
};
}