Files
dotfiles/users/files/home.nix
Sebastian Moser 60b70c23d2 ...
2025-07-10 10:18:40 +02:00

30 lines
478 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;
};
ocih = {
hostname = "152.67.70.13";
user = "ubuntu";
};
};
};
}