nixos-configs/machines/atlas/configuration.nix

19 lines
450 B
Nix
Raw 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;
deployment = {
targetHost = "atlas";
targetUser = "root";
2024-12-01 14:05:01 +00:00
tags = ["server" "kubernetes"];
2024-12-01 13:33:24 +00:00
};
pim = {
sops-nix.usersWithSopsKeys = ["root"];
2024-12-01 14:05:01 +00:00
k3s.serverAddr = "https://jefke.dmz:6443";
2024-12-01 13:33:24 +00:00
};
};
}