15 lines
162 B
Nix
Executable File
15 lines
162 B
Nix
Executable File
|
|
{ config, pkgs, host, ... }:
|
|
let
|
|
in
|
|
{
|
|
|
|
networking.hostName = host;
|
|
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
};
|
|
|
|
networking.enableIPv6 = true;
|
|
}
|