26 lines
408 B
Nix
26 lines
408 B
Nix
{ secretsDir, ... }: {
|
|
|
|
imports = [
|
|
../common/home.nix
|
|
];
|
|
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks = {
|
|
"*" = {
|
|
identityFile = "/home/files/secrets/files-private";
|
|
};
|
|
ouranos = {
|
|
hostname = "195.201.148.94";
|
|
user = "root";
|
|
};
|
|
fusus = {
|
|
hostname = "localhost";
|
|
user = "server";
|
|
port = 49388;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|