reo101
dd2391d905
Place all configurations in `machines/${manager}/${system}/${hostname}/...`: - `${manager}` - One of `nixos`, `nix-on-droid`, `nix-darwin` or `home-manager` - `${system}` - A system's architecture (can be many) - `${hostname}` - A system's hostname (can be many) The flake now automatically generates the needed configurations based on the above structure. It only generates configurations for valid directory structures: - It wouldn't generate a NixOS config if there isn't a `configuration.nix` file - ...
36 lines
775 B
Nix
36 lines
775 B
Nix
{ lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mapAttrs;
|
|
inherit (lib.attrsets) filterAttrs;
|
|
in
|
|
rec {
|
|
recurseDir = dir:
|
|
mapAttrs
|
|
(file: type:
|
|
if type == "directory"
|
|
then recurseDir "${dir}/${file}"
|
|
else type
|
|
)
|
|
(builtins.readDir dir);
|
|
|
|
# VVV - Implying `attrs` is the output of `recurseDir` - VVV
|
|
|
|
hasFiles = files: attrs:
|
|
builtins.all
|
|
(b: b)
|
|
(builtins.map
|
|
(file:
|
|
builtins.hasAttr file attrs &&
|
|
builtins.getAttr file attrs == "regular")
|
|
files);
|
|
|
|
hasDirectories = directories: attrs:
|
|
builtins.all
|
|
(b: b)
|
|
(builtins.map
|
|
(directory:
|
|
builtins.hasAttr directory attrs &&
|
|
builtins.getAttr directory attrs == "set")
|
|
directories);
|
|
}
|