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

36 lines
725 B
Nix
Raw Normal View History

2024-05-29 17:15:20 +02:00
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./services/firewall.nix
./services/mumble.nix
./services/ddns-updater.nix
2024-05-29 17:15:20 +02:00
./services/postgresql.nix
./services/matrix.nix
./services/owncast.nix
./services/penpot/docker-compose.nix
2024-05-29 17:15:20 +02:00
# 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" ];
};
2024-05-29 17:15:20 +02:00
}