mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
12 lines
278 B
Nix
12 lines
278 B
Nix
let
|
|
sources = import ../sources.nix;
|
|
lib = import (sources.nixpkgs + "/lib");
|
|
in
|
|
lib.mapAttrs
|
|
(
|
|
name: _:
|
|
import (./by-name + "/${name}/overlay.nix") {inherit sources;}
|
|
)
|
|
(
|
|
lib.filterAttrs (_: type: type == "directory") (builtins.readDir ./by-name)
|
|
)
|