mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
9 lines
273 B
Nix
9 lines
273 B
Nix
builtins.listToAttrs (map
|
|
(wallpaper: {
|
|
inherit (wallpaper) name;
|
|
value = builtins.fetchurl {
|
|
inherit (wallpaper) sha256;
|
|
url = "https://i.imgur.com/${wallpaper.id}.${wallpaper.ext}";
|
|
};
|
|
})
|
|
(builtins.fromJSON (builtins.readFile ./list.json)))
|