32 lines
533 B
Nix
32 lines
533 B
Nix
# ============================================================================
|
|
# Builders Software Configuration
|
|
# ============================================================================
|
|
# Imports builder-specific programs and services (Gitea 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
|
|
;
|
|
})
|
|
]
|