15 lines
305 B
Nix
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";
|
|
};
|
|
})
|
|
];
|
|
};
|
|
}
|