nixos-config/modules/nixos/networking/default.nix

17 lines
314 B
Nix

{ config, lib, ... }:
{
options.custom.networking.hostName = lib.mkOption {
type = lib.types.nonEmptyStr;
default = config.networking.hostName;
readOnly = true;
};
config = {
networking = {
useNetworkd = true;
useDHCP = false;
};
services.resolved.enable = true;
};
}