mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
209a24dff2
Signed-off-by: Avimitin <dev@avimit.in>
26 lines
501 B
Nix
26 lines
501 B
Nix
{ ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.wpaperd = {
|
|
enable = true;
|
|
settings = {
|
|
eDP-1 = {
|
|
path = "/home/foo/Pictures/Wallpaper";
|
|
apply-shadow = true;
|
|
};
|
|
DP-2 = {
|
|
path = "/home/foo/Pictures/Anime";
|
|
sorting = "descending";
|
|
};
|
|
};
|
|
};
|
|
|
|
test.stubs.wpaperd = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/wpaperd/wallpaper.toml \
|
|
${./wpaperd-expected-settings.toml}
|
|
'';
|
|
};
|
|
}
|