infrastructure/machines/web01/_configuration.nix

19 lines
243 B
Nix
Raw Normal View History

{ lib, ... }:
2023-05-12 03:22:09 +02:00
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
];
2023-05-12 03:22:09 +02:00
enabledServices = [
# List of services to enable
"metis"
"linkal"
"plausible"
2023-10-07 15:48:53 +02:00
"wordpress"
];
2023-05-12 03:22:09 +02:00
root = ./.;
}