This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/lime/root.nix
2024-05-29 17:15:20 +02:00

32 lines
597 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./services/firewall.nix
#./services/loki.nix
./services/mumble.nix
#./services/ddns-updater.nix
#./services/ai.nix
./services/postgresql.nix
./services/matrix.nix
./services/owncast.nix
# monitoring
./services/monitoring/exporters/node.nix
./services/monitoring/exporters/smartctl.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
networking.hostName = "lime";
networking.domain = "4o1x5.dev";
}