lab-infra/machines/roam01/_configuration.nix
catvayor b3e97e0be5
All checks were successful
build configuration / build_krz01 (push) Successful in 6m51s
lint / check (push) Successful in 29s
feat(roam01): gretap with vault01
2025-01-22 13:52:06 +01:00

20 lines
329 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"wireguard"
"networking"
];
extraConfig = {
networking.interfaces.enp2s0.useDHCP = false;
networking.interfaces.enp3s0.useDHCP = false;
};
root = ./.;
}