You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
560 B
28 lines
560 B
{ config, name, ...}:
|
|
|
|
{
|
|
networking = {
|
|
nftables.enable = true;
|
|
|
|
hostName = name;
|
|
domain = "linuxlab.informatik.hs-fulda.de";
|
|
|
|
search = [
|
|
"linuxlab.informatik.hs-fulda.de"
|
|
];
|
|
|
|
# TODO: nameservers = [ "10.0.0.53" ];
|
|
nameservers = [ "1.0.0.1" "1.1.1.1" ];
|
|
|
|
useDHCP = false;
|
|
|
|
extraHosts = ''
|
|
10.32.45.10 nfs.${config.networking.domain}
|
|
10.32.45.11 ldap.${config.networking.domain}
|
|
10.32.45.12 install.${config.networking.domain}
|
|
|
|
10.32.45.11 ldap-linuxlab.informatik.hs-fulda.de
|
|
'';
|
|
};
|
|
}
|
|
|