From 03f697cf3369bee6133868d309dcd49e0dec7870 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sun, 28 Jan 2024 11:45:20 +0530 Subject: [PATCH] desc --- nixos/github-runner.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/github-runner.nix b/nixos/github-runner.nix index 80fdf36..1ba0ae8 100644 --- a/nixos/github-runner.nix +++ b/nixos/github-runner.nix @@ -28,6 +28,9 @@ in options = { localAddress = lib.mkOption { type = types.str; + description = '' + IP address of the host that will run containers. + ''; default = (builtins.head (builtins.head (lib.attrValues config.networking.interfaces)).ipv4.addresses).address; }; @@ -35,7 +38,9 @@ in type = types.int; default = 1234; description = '' - Shared UID between host and containers, so guest nix can access /nix/store of host. + Shared UID between host and containers. + + This allows the guest nix processes to access /nix/store of the host. ''; }; owner = lib.mkOption {