nixos-configs/machines/jefke/configuration.nix

15 lines
368 B
Nix
Raw Normal View History

2024-12-01 14:40:51 +00:00
{config, ...}: {
config = {
2024-12-01 16:15:01 +00:00
pim.k3s.clusterInit = true;
2024-12-01 14:40:51 +00:00
facter.reportPath = ./facter.json;
system.stateVersion = "23.05";
users.users.root.openssh.authorizedKeys.keys = config.pim.ssh.keys.pim ++ config.pim.ssh.keys.niels;
deployment = {
targetHost = "jefke";
targetUser = "root";
tags = ["server" "kubernetes"];
};
};
}