nixos-config/config/hardware/cashew.nix

24 lines
388 B
Nix
Raw Permalink Normal View History

{ config, lib, pkgs, ... }:
{
config = {
boot.isContainer = true;
networking = {
useDHCP = false;
macvlans = {
extif0 = {
interface = "eno2";
mode = "bridge";
};
2021-11-17 17:32:27 -08:00
};
interfaces = {
extif0.macAddress =
2021-11-29 16:03:38 -08:00
pkgs.lib.network.generate-mac-address config.instance.hostname "extif0";
};
2021-11-17 17:32:27 -08:00
};
};
}