32 lines
597 B
Nix
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";
|
|
|
|
|
|
}
|