9 lines
139 B
Nix
9 lines
139 B
Nix
|
{lib, ...}: {
|
||
|
imports = [
|
||
|
./hostName.nix
|
||
|
];
|
||
|
|
||
|
networking.hostName = lib.mkOverride 1100 "container";
|
||
|
boot.isContainer = true;
|
||
|
}
|