Files
nix-config/hosts/common/optional/services/k3s.nix
2026-02-26 19:29:50 +05:00

16 lines
258 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
k3s_1_35
cifs-utils
nfs-utils
];
services.k3s = {
enable = true;
role = "agent";
# Add this before running
token = "";
serverAddr = "https://rashid:6443";
};
}