Move server configs into a reusable module

This commit is contained in:
2024-07-18 22:29:21 -07:00
parent 4c534c4ce3
commit 38fe094119
5 changed files with 37 additions and 42 deletions

14
modules/server.nix Normal file
View File

@@ -0,0 +1,14 @@
{ ... }:
{
networking.networkmanager.enable = true;
users.users.nettika.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHopty1QG8P+OfGxQ9CV0BI1IRB/q6yITzMZaZ6Zspid nettika@marauder"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM8s5w9uAFMguVbbAamI7pKysgeLTwULXAVn5F0UDVl2 nettika@pixeltablet"
];
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
}