33 lines
596 B
Nix
33 lines
596 B
Nix
{ ... }: {
|
|
|
|
imports = let
|
|
dir = builtins.readDir ./.;
|
|
in builtins.map (x: ./${x}) (builtins.filter
|
|
(file: (dir.${file} == "directory"))
|
|
(builtins.attrNames dir)
|
|
);
|
|
|
|
/*imports = [
|
|
./gitlab
|
|
./gitea
|
|
./traefik
|
|
./nginx
|
|
./jellyfin
|
|
./pihole
|
|
./nextcloud
|
|
./ntfy
|
|
./homeassistant
|
|
./rustdesk
|
|
./netbird
|
|
./keycloak
|
|
./ollama
|
|
./openwebui
|
|
./n8n
|
|
./wyoming
|
|
./code-server
|
|
./novnc
|
|
./minecraft
|
|
#./sandbox
|
|
];*/
|
|
}
|