18 lines
241 B
Nix
18 lines
241 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"atticd"
|
|
"forgejo"
|
|
"garage"
|
|
"peertube"
|
|
];
|
|
|
|
root = ./.;
|
|
}
|