Files
dotfiles/users/files/home.nix
Sebastian Moser 0cffb9cb54 users upadate
2025-06-19 10:31:13 +02:00

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;
};
};
};
}