{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./services/firewall.nix
./services/mumble.nix
./services/ddns-updater.nix
./services/postgresql.nix
./services/matrix.nix
./services/owncast.nix
./services/penpot/docker-compose.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";
users.users.lime = {
isNormalUser = true;
description = "lime";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
}