Constantin Gierczak--Galle
9b5c6848c0
Reviewed-on: #6 Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org> Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
16 lines
204 B
Nix
16 lines
204 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"nsd"
|
|
];
|
|
|
|
extraConfig = { };
|
|
|
|
root = ./.;
|
|
}
|