feat: wallpaper_random

This commit is contained in:
Ryan Yin
2023-07-29 23:08:13 +08:00
parent bc290e371b
commit a310ab4d4a
12 changed files with 153 additions and 47 deletions
+4 -1
View File
@@ -5,5 +5,8 @@ builtins.map
(builtins.filter # find all overlay files in the current directory
(f: f != "default.nix")
(f:
f != "default.nix" # ignore default.nix
&& f != "README.md" # ignore README.md
)
(builtins.attrNames (builtins.readDir ./.)))