From 394e55320607ef31672dbbc891d03e1b063cd6fd Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 27 Mar 2024 11:06:59 -0400 Subject: [PATCH] ref --- clusters/github-runner/flake-module.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/clusters/github-runner/flake-module.nix b/clusters/github-runner/flake-module.nix index ac55851..ae9a322 100644 --- a/clusters/github-runner/flake-module.nix +++ b/clusters/github-runner/flake-module.nix @@ -1,10 +1,11 @@ -{ self, lib, flake-parts-lib, ... }: +{ config, self, lib, flake-parts-lib, ... }: let inherit (flake-parts-lib) mkPerSystemOption; inherit (lib) types; + cfg = config.distributed-github-runner; in { options.distributed-github-runner = { @@ -41,7 +42,7 @@ in nixosModule = lib.mkOption { type = types.deferredModule; description = "The NixOS module to use for the GitHub runner"; - internal = true; + readOnly = true; }; }; };