users upadate

This commit is contained in:
Sebastian Moser
2025-06-19 10:31:13 +02:00
parent bff8a49cc4
commit 0cffb9cb54
7 changed files with 48 additions and 6 deletions

25
users/files/home.nix Normal file
View File

@@ -0,0 +1,25 @@
{ 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;
};
};
};
}