utilisation de networking.fqdn (hostName + domain)

Les nouvelles règles dans NixOS obligent à avoir dans networking.hostName
un label DNS strict, il faut donc préciser le domaine à part dans
networking.domain.
networking.fqdn est une facilité pour concaténer les deux, en lecture
seule.
This commit is contained in:
Yves Dubromelle
2021-05-06 23:50:07 +02:00
parent 9ed945bba8
commit 4a5f0ba1a7
82 changed files with 93 additions and 90 deletions

View File

@@ -19,5 +19,6 @@
}
];
environment.shellAliases = { nixos-generate-custom-config = "cd /iso/custom/ && make";};
networking.hostName = "nixos-livecd.corp.capgemini.com";
networking.hostName = "nixos-livecd";
networking.domain = "grudu.net";
}