d932409986
Adds the maestro flake as an input and imports its Home Manager module. yolo enables both user services; web binds 0.0.0.0:8081 because aoe-web already holds 8080 on this host. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
8 lines
317 B
Nix
8 lines
317 B
Nix
{ inputs, ... }:
|
|
# Maestro: the terminal-session orchestrator. Module only — no `enable` here,
|
|
# because the daemon owns every interactive shell on the host it runs on, and
|
|
# only one box should be doing that. Hosts opt in from their own services.nix.
|
|
{
|
|
imports = [ inputs.maestro.homeManagerModules.default ];
|
|
}
|