lab-infra/machines/roam01/_configuration.nix

19 lines
261 B
Nix
Raw Normal View History

2024-12-05 09:59:59 +01:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"wireguard"
];
extraConfig = {
networking.interfaces.enp1s0.useDHCP = true;
};
root = ./.;
}