feat: wire up rigging as second consumer #1

Merged
toph merged 3 commits from feat/rigging-integration into main 2026-02-18 08:39:55 +00:00
Showing only changes of commit dac9526135 - Show all commits

26
modules/flake/bosun.nix Normal file
View file

@ -0,0 +1,26 @@
# 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"];
};
};
};
}