fmt: remove duplicate imports, now unified in applications/_base.nix

This commit is contained in:
silver 2024-07-16 23:09:22 +01:00
parent cb0cfbaf4a
commit e9d5985adf
Signed by: silver
GPG key ID: 54E2C71918E93B74
18 changed files with 17 additions and 60 deletions

View file

@ -9,9 +9,24 @@ with lib; let
cfg = config.services.skynet;
in {
imports = [
# every server needs to have a dns record
./dns/dns.nix
# every server should have proper certs
./acme.nix
../dns/dns.nix
./nginx.nix
# every server may need the firewall config stuff
./firewall.nix
# every server needs teh ldap client for admins
./ldap/client.nix
# every server will need the config to backup to
./restic.nix
# every server will be monitored for grafana
./prometheus.nix
];
options.services.skynet = {