nix/hosts/metrics/default.nix
2024-08-29 09:19:46 +02:00

37 lines
546 B
Nix

{
config,
pkgs,
lib,
...
}:
{
my = {
utils.commons.enable = true;
networking.tailscale = {
enable = false;
exitNode = "vps";
# authKeyFile = builtins.toFile "authKey" ''${parameters.tailscaleAuthKey}'';
};
virtualisation = {
proxmox.enable = true;
};
};
time.timeZone = "Europe/Rome";
# Extra packages
environment.systemPackages = with pkgs; [ ];
services = {
openssh.enable = true;
prometheus = {
enable = true;
};
};
system.stateVersion = "24.05";
}