34 lines
No EOL
708 B
Nix
34 lines
No EOL
708 B
Nix
{
|
|
autossh = {
|
|
remote_proxy = {
|
|
key = {
|
|
file = ../secrets/autossh/remote_proxy_key;
|
|
owner = "autossh-remote_proxy";
|
|
mode = "0400";
|
|
};
|
|
known_hosts = {
|
|
file = ../secrets/autossh/remote_proxy_known_hosts;
|
|
owner = "autossh-remote_proxy";
|
|
mode = "0400";
|
|
};
|
|
};
|
|
};
|
|
|
|
qbittorrent = {
|
|
file = ../secrets/qbittorrent/vpn.json;
|
|
};
|
|
|
|
openssh = {
|
|
users = {
|
|
nudelerde = {
|
|
pub_keys = {
|
|
file = ../secrets/openssh/nudelerde/pub_keys;
|
|
path = "/home/nudelerde/.ssh/authorized_keys";
|
|
owner = "nudelerde";
|
|
group = "users";
|
|
mode = "0600";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |