-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
37 lines (36 loc) · 974 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
outputs =
{ ... }:
{
nixosModules = {
default = {
imports = [
# Web Applications
./modules/gitea.nix
./modules/graylog.nix
./modules/hedgedoc.nix
./modules/keycloak.nix
./modules/matrix/default.nix
./modules/monitoring/default.nix
./modules/netbox.nix
./modules/nexus.nix
./modules/paperless.nix
./modules/peering-manager.nix
./modules/simple-upload.nix
./modules/unifi.nix
./modules/vaultwarden.nix
./modules/woodpecker.nix
./modules/zammad.nix
# Other
./modules/containers.nix
./modules/filebeat.nix
./modules/hardening.nix
./modules/nginx.nix
./modules/postgres.nix
./modules/user.nix
./modules/bind.nix
];
};
};
};
}