nix/hosts/arr/default.nix
2024-08-27 21:59:21 +02:00

36 lines
579 B
Nix

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