Files
nix-config/modules/hosts/tux/users/weckyy702/wallpaper.nix
2026-03-17 00:15:19 +01:00

15 lines
305 B
Nix

{ inputs, ... }: {
flake.modules.homeManager.randomized-aghpb-wallpaper = {
imports = with inputs.self.factory; [
(wpaperd {
default = {
path = inputs.aghpb;
recursive = true;
mode = "stretch";
duration = "5m";
};
})
];
};
}