nixos-config/nixos/machines/orbi/configuration.nix

71 lines
1.5 KiB
Nix
Raw Normal View History

2023-12-09 17:15:50 +01:00
{ lib, config, pkgs, ... }: {
imports = [
2024-03-03 10:52:46 +01:00
./hardware-configuration
2023-12-09 17:15:50 +01:00
../../system/all/defaults.nix
2024-03-03 10:52:46 +01:00
2023-12-09 17:15:50 +01:00
../../components
../../modules
2024-04-12 23:09:40 +02:00
./service-hedgedoc.nix
./service-forgejo.nix
2024-02-16 22:21:05 +01:00
#./borg.nix
#./codimd.nix
#./gitea.nix
2024-04-12 23:09:40 +02:00
#./packages.nix
2024-02-16 22:21:05 +01:00
#./taskserver.nix
#./vaultwarden.nix
2024-04-12 20:56:42 +02:00
./nginx-ingolf-wagner-de.nix
./nginx-wkd.nix
2024-02-16 22:21:05 +01:00
2024-03-03 21:58:52 +01:00
./network-tinc.nix
2024-04-07 17:58:36 +02:00
./network-wireguard.nix
2024-02-16 22:21:05 +01:00
2024-04-07 10:18:13 +02:00
./media-share.nix
2024-02-16 22:21:05 +01:00
#./media-jellyfin.nix
#./media-syncthing.nix
#./media-transmission.nix
2024-04-07 10:18:13 +02:00
./media-transmission2.nix
./media-arr.nix
2024-04-11 13:44:52 +02:00
./media-nextcloud.nix
2024-02-16 22:21:05 +01:00
2023-12-09 17:15:50 +01:00
#./social-jitsi.nix
2024-04-04 21:26:10 +02:00
./social-matrix-terranix.nix
#./social-matrix-ingolf-wagner.nix
2023-12-09 17:15:50 +01:00
2024-04-12 23:09:40 +02:00
#./sync-opentracker.nix
#./sync-torrent.nix
# telemetry
# ---------
2024-02-16 22:21:05 +01:00
#./loki.nix
#./loki-promtail.nix
##./prometheus.nix
#./grafana.nix
2023-12-09 17:15:50 +01:00
./telegraf.nix
2024-02-16 22:21:05 +01:00
#./cache.nix
2023-12-09 17:15:50 +01:00
];
networking.hostName = "orbi";
2024-02-16 22:21:05 +01:00
2023-12-09 17:15:50 +01:00
components.terminal.enable = true;
components.mainUser.enable = true;
components.gui.enable = false;
components.network.enable = true;
2024-04-12 20:56:42 +02:00
components.network.nginx.landingpage.enable = false;
2023-12-09 17:15:50 +01:00
components.network.wifi.enable = false;
security.acme.acceptTerms = true;
security.acme.defaults.email = "contact@ingolf-wagner.de";
2024-03-03 21:58:52 +01:00
sops.defaultSopsFile = ../../secrets/orbi.yaml;
2024-02-16 22:21:05 +01:00
2024-04-04 22:24:48 +02:00
# chungus rsync
users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkqVvuJSvRMO5pG2CHNNBxjB7HlJudK4TQs3BhbOWOD" ];
2023-12-09 17:15:50 +01:00
}