18 lines
261 B
Nix
18 lines
261 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"wireguard"
|
|
];
|
|
|
|
extraConfig = {
|
|
networking.interfaces.enp1s0.useDHCP = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|