feat(modules/networking): enable ssh

This commit is contained in:
Mohammad Rafiq 2025-05-18 23:11:59 +08:00
parent 343dd8fffc
commit cbd59b8d35
No known key found for this signature in database

View file

@ -6,6 +6,12 @@
networking.hostName = config.system.hostname;
networking.networkmanager.enable = true;
services.openssh = {
enable = true;
settings = {
PrintMotd = true;};
};
services.tailscale = {
enable = true;
authKeyFile = config.sops.secrets."keys/tailscale".path;};