nixos-configuration/hosts/pi4/networking.nix

14 lines
199 B
Nix
Raw Normal View History

2025-04-15 23:39:10 +02:00
{ systemConfig, ... }:
{
networking = {
hostName = systemConfig.hostName;
networkmanager.enable = true;
};
services = {
openssh.enable = true;
tailscale.enable = true;
};
2025-04-15 23:39:10 +02:00
}