Tweaks and leftover bits

This commit is contained in:
Tibo De Peuter 2023-11-14 22:38:42 +01:00
parent 2d4ebe3370
commit 39992187a6
4 changed files with 21 additions and 5 deletions

View file

@ -0,0 +1,12 @@
# The following is taken from: https://nixos-and-flakes.thiscute.world/nixpkgs/overlays
# import all nix files in the current folder, and execute them with args as parameters
# The return value is a list of all execution results, which is the list of overlays
args:
# execute and import all overlay files in the current directory with the given args
builtins.map
(f: (import (./. + "/${f}") args)) # execute and import the overlay file
(builtins.filter # find all overlay files in the current directory
(f: f != "default.nix")
(builtins.attrNames (builtins.readDir ./.)))