27 lines
379 B
Nix
27 lines
379 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
networking.firewall.allowedTCPPorts = [ 37617 ];
|
|
|
|
my = {
|
|
networking.tailscale.enable = true;
|
|
|
|
utils = {
|
|
commons.enable = true;
|
|
lxc-standard.enable = true;
|
|
};
|
|
|
|
virtualisation.proxmox.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
zeroclaw
|
|
];
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|