nixos-configuration/hosts/pi4/networking.nix

11 lines
157 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;
}