This commit is contained in:
2026-03-03 23:58:11 +01:00
parent 31fce6f97f
commit dfac74f737

View File

@@ -119,13 +119,14 @@
];
};
};
home.file.wallpaper = {
recursive = true;
source = ./wallpaper;
target = ".local/share/backgrounds";
};
home.file.".local/share/gnome-background-properties/my-wallpapers.xml" = {
home.file.".local/share/gnome-background-properties/my-wallpapers.xml" = {
text = let
files = builtins.attrNames (builtins.readDir ./wallpaper);
entry = file: ''
@@ -142,7 +143,6 @@ home.file.".local/share/gnome-background-properties/my-wallpapers.xml" = {
${builtins.concatStringsSep "\n" (map entry files)}
</wallpapers>
'';
};
};
};
}