This commit is contained in:
2026-04-09 11:20:15 -05:00
parent 42d2399c42
commit 94a2ed6c8a
19 changed files with 25 additions and 10 deletions

View File

@@ -1,10 +1,26 @@
{ ... }: {
flake.nixosModules.default = { ... }: {
flake.nixosModules.default = { lib, ... }: {
config = {
environment.etc = lib.mkMerge [
(builtins.listToAttrs
(builtins.map
(n: {
name = "Wallpaper/${n}";
value = {
source = ./Wallpaper/${n};
};
})
(builtins.attrNames
(builtins.readDir ./Wallpaper)
)
)
)
];
};
};
}