17 lines
208 B
Nix
17 lines
208 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
lib.extra.mkConfig {
|
||
|
enabledModules = [
|
||
|
# List of modules to enable
|
||
|
"dgn-web"
|
||
|
];
|
||
|
|
||
|
enabledServices = [
|
||
|
# List of services to enable
|
||
|
];
|
||
|
|
||
|
extraConfig = { };
|
||
|
|
||
|
root = ./.;
|
||
|
}
|