nixos/modules/core/network.nix

14 lines
191 B
Nix

{
config,
host,
pkgs,
...
}:
{
networking = {
hostname = "${host}";
networkmanager.enable = true;
};
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
}