nixos-configs/machines/atlas/configuration.nix

15 lines
387 B
Nix
Raw Permalink Normal View History

2024-12-01 13:33:24 +00:00
{config, ...}: {
config = {
facter.reportPath = ./facter.json;
system.stateVersion = "23.05";
users.users.root.openssh.authorizedKeys.keys = config.pim.ssh.keys.pim ++ config.pim.ssh.keys.niels;
2024-12-01 16:15:01 +00:00
pim.k3s.serverAddr = "https://jefke.dmz:6443";
2024-12-01 13:33:24 +00:00
deployment = {
targetHost = "atlas";
targetUser = "root";
2024-12-01 14:05:01 +00:00
tags = ["server" "kubernetes"];
2024-12-01 13:33:24 +00:00
};
};
}