54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
filterAttrs
|
|
pathExists
|
|
;
|
|
in
|
|
{
|
|
# only import available files, as this allows to filter the files for tests.
|
|
flake.clanModules = filterAttrs (_name: pathExists) {
|
|
admin = ./admin;
|
|
auto-upgrade = ./auto-upgrade;
|
|
borgbackup = ./borgbackup;
|
|
borgbackup-static = ./borgbackup-static;
|
|
deltachat = ./deltachat;
|
|
data-mesher = ./data-mesher;
|
|
disk-id = ./disk-id;
|
|
dyndns = ./dyndns;
|
|
ergochat = ./ergochat;
|
|
garage = ./garage;
|
|
golem-provider = ./golem-provider;
|
|
heisenbridge = ./heisenbridge;
|
|
importer = ./importer;
|
|
iwd = ./iwd;
|
|
localbackup = ./localbackup;
|
|
localsend = ./localsend;
|
|
machine-id = ./machine-id;
|
|
matrix-synapse = ./matrix-synapse;
|
|
moonlight = ./moonlight;
|
|
mumble = ./mumble;
|
|
mycelium = ./mycelium;
|
|
nginx = ./nginx;
|
|
packages = ./packages;
|
|
postgresql = ./postgresql;
|
|
root-password = ./root-password;
|
|
single-disk = ./single-disk;
|
|
sshd = ./sshd;
|
|
state-version = ./state-version;
|
|
static-hosts = ./static-hosts;
|
|
sunshine = ./sunshine;
|
|
syncthing = ./syncthing;
|
|
syncthing-static-peers = ./syncthing-static-peers;
|
|
thelounge = ./thelounge;
|
|
trusted-nix-caches = ./trusted-nix-caches;
|
|
user-password = ./user-password;
|
|
vaultwarden = ./vaultwarden;
|
|
wifi = ./wifi;
|
|
xfce = ./xfce;
|
|
zerotier = ./zerotier;
|
|
zerotier-static-peers = ./zerotier-static-peers;
|
|
zt-tcp-relay = ./zt-tcp-relay;
|
|
};
|
|
}
|