test
BIN
system/etc/Wallpaper/Tron.jpg
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
BIN
system/etc/Wallpaper/bluescape.jpg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
system/etc/Wallpaper/galaxy.jpg
Normal file
|
After Width: | Height: | Size: 1007 KiB |
BIN
system/etc/Wallpaper/kurisu.gif
Normal file
|
After Width: | Height: | Size: 110 MiB |
BIN
system/etc/Wallpaper/kurisu.jpg
Normal file
|
After Width: | Height: | Size: 191 KiB |
BIN
system/etc/Wallpaper/llenn.png
Normal file
|
After Width: | Height: | Size: 874 KiB |
BIN
system/etc/Wallpaper/megumin.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
system/etc/Wallpaper/megumin1.gif
Normal file
|
After Width: | Height: | Size: 48 MiB |
BIN
system/etc/Wallpaper/megumin2.gif
Normal file
|
After Width: | Height: | Size: 203 MiB |
BIN
system/etc/Wallpaper/ngnl.jpg
Normal file
|
After Width: | Height: | Size: 670 KiB |
BIN
system/etc/Wallpaper/orangescape.jpg
Normal file
|
After Width: | Height: | Size: 273 KiB |
BIN
system/etc/Wallpaper/pink_fc.mp4
Normal file
BIN
system/etc/Wallpaper/rezero.gif
Normal file
|
After Width: | Height: | Size: 140 MiB |
BIN
system/etc/Wallpaper/sao.gif
Normal file
|
After Width: | Height: | Size: 3.1 MiB |
BIN
system/etc/Wallpaper/sao.png
Normal file
|
After Width: | Height: | Size: 2.8 MiB |
BIN
system/etc/Wallpaper/sinon.gif
Normal file
|
After Width: | Height: | Size: 36 MiB |
@@ -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)
|
||||
)
|
||||
)
|
||||
)
|
||||
];
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||