nixos-config/modules/containers/default.nix

9 lines
139 B
Nix
Raw Normal View History

2024-10-28 09:51:44 +00:00
{lib, ...}: {
imports = [
./hostName.nix
];
networking.hostName = lib.mkOverride 1100 "container";
boot.isContainer = true;
}