dots/modules/nixos/features/network.nix
2025-10-22 01:22:05 +11:00

10 lines
113 B
Nix

{
hostName,
...
}:
{
networking = {
hostName = "${hostName}";
networkmanager.enable = true;
};
}