This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
kittehcluster/nixinfra/commons.server.nix
2024-07-19 12:15:07 -04:00

29 lines
No EOL
421 B
Nix

let
pkgs = import <nixpkgs> {};
in {
imports = [
./commons.nix
];
services.k3s = {
enable = true;
role = "server";
serverAddr = "https://kitteh-node-1-k3s-server:6443";
extraFlags = "--disable servicelb";
};
# K3s settings
networking.firewall = {
enable = true;
allowedTCPPorts = [
6443
2379
2380
];
allowedUDPPorts = [
8472
];
};
}