10 lines
142 B
Nix
10 lines
142 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
];
|
|
|
|
boot.isContainer = true;
|
|
custom.tailscale.enable = false;
|
|
networking.useDHCP = lib.mkForce false;
|
|
}
|