Files
alo-cluster/common/container-node.nix
2024-09-25 15:11:56 +01:00

12 lines
249 B
Nix

{ lib, ... }:
{
imports = [
./impermanence.nix # TODO: find a way to avoid needing this here
];
boot.isContainer = true;
custom.impermanence.enable = false;
custom.tailscale.enable = false;
networking.useDHCP = lib.mkForce false;
}