1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-03 12:14:07 +00:00
This commit is contained in:
Rae 5e 2025-03-03 21:40:24 -05:00
parent f2644a48ad
commit 4c35ee5504
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
6 changed files with 50 additions and 33 deletions

View file

@ -6,9 +6,24 @@
../base.nix
];
networking.hostName = "near";
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPyZFWvrboUTM/dKzz5kQHEKjNqI410VJUGiVckhjOve rae@ioides"
];
time.timeZone = "America/New_York";
services.openssh = {
ports = [ 22 ];
banner = "I won't hold it against you";
settings = {
PasswordAuthentication = true;
};
};
system.stateVersion = "24.11";
networking = {
hostName = "near";
firewall.allowedTCPPorts = [ 22 ];
};
time.timeZone = "America/New_York";
system.stateVersion = "24.11";
}