infrastructure/machines/nixos/web01/_configuration.nix
Tom Hubrecht ecbad0a638
chore: Abstract machines and modules
This adds subdirectories for the different types of systems, for the
modules and the machines
2024-12-08 13:39:10 +01:00

28 lines
394 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
];
enabledServices = [
# List of services to enable
"castopod"
"crabfit"
"linkal"
"matterbridge"
"metis"
"ntfy-sh"
"redirections"
"static"
"wordpress"
"netbox"
];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}