feat: wire up rigging as second consumer #1
1 changed files with 26 additions and 0 deletions
26
modules/flake/bosun.nix
Normal file
26
modules/flake/bosun.nix
Normal 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"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue