# Bosun — multi-repo infrastructure management # Declares hosts for this repo (no Nomad jobs — desktop/laptop only) {inputs, ...}: { imports = [ inputs.rigging.flakeModules.default ]; bosun = { meta.name = "dotfiles"; hosts = { endurance = { system = "x86_64-linux"; tags = ["desktop" "workstation"]; }; aepplet = { system = "x86_64-linux"; tags = ["server" "data"]; }; vasa = { system = "x86_64-darwin"; class = "darwin"; tags = ["laptop" "macos"]; }; }; }; }