23 lines
662 B
Nix
23 lines
662 B
Nix
{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;
|
|
pim.k3s.serverAddr = "https://jefke.dmz:6443";
|
|
|
|
pim.backups.borgBackups = {
|
|
freshrss = {
|
|
repo = "ssh://ty1l82m0@ty1l82m0.repo.borgbase.com/./repo";
|
|
paths = ["/mnt/longhorn/persistent/volumes/freshrss"];
|
|
deploymentName = "server";
|
|
deploymentNamespace = "freshrss";
|
|
};
|
|
};
|
|
|
|
deployment = {
|
|
targetHost = "atlas";
|
|
targetUser = "root";
|
|
tags = ["server" "kubernetes"];
|
|
};
|
|
};
|
|
}
|