builder config with options

This commit is contained in:
Hunter Halloran
2025-12-17 10:43:43 -05:00
parent 8cdedae4db
commit a0e09336ad
5 changed files with 185 additions and 26 deletions

31
sw/builders/default.nix Normal file
View File

@@ -0,0 +1,31 @@
# ============================================================================
# Builders Software Configuration
# ============================================================================
# Imports builder-specific programs and services (GitHub Actions runners, etc.)
{
config,
lib,
pkgs,
inputs,
...
}:
lib.mkMerge [
(import ./programs.nix {
inherit
config
lib
pkgs
inputs
;
})
(import ./services.nix {
inherit
config
lib
pkgs
inputs
;
})
]