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.
26 lines
490 B
26 lines
490 B
{ config, name, ... }:
|
|
|
|
{
|
|
networking = {
|
|
nftables.enable = true;
|
|
|
|
hostName = name;
|
|
domain = "linuxlab.informatik.hs-fulda.de";
|
|
|
|
search = [
|
|
"linuxlab.informatik.hs-fulda.de"
|
|
];
|
|
|
|
nameservers = [ "10.0.0.53" ];
|
|
|
|
useDHCP = false;
|
|
|
|
extraHosts = ''
|
|
10.33.64.20 nfs.${config.networking.domain} cache.${config.networking.domain}
|
|
10.33.64.19 ldap.${config.networking.domain}
|
|
|
|
10.33.64.19 ldap-linuxlab.informatik.hs-fulda.de
|
|
'';
|
|
};
|
|
}
|
|
|