8 lines
149 B
Nix
8 lines
149 B
Nix
{config, ...}: {
|
|
networking = {
|
|
hostName = config.universe.system.hostname;
|
|
networkmanager.enable = true;
|
|
dhcpcd.enable = true;
|
|
};
|
|
}
|