summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-06-14 20:17:37 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2019-06-14 20:38:33 +0200
commitd9f7bac91fe5e8eca85d9a68e61f009714ee064b (patch)
tree3c8461ed66fc33c6dfd1f134c95fd78f6f7984e9 /nixos
parentb8c827c2660f9ee63b905ccddbfa794b410d86b9 (diff)
downloadnixpkgs-d9f7bac91fe5e8eca85d9a68e61f009714ee064b.tar
nixpkgs-d9f7bac91fe5e8eca85d9a68e61f009714ee064b.tar.gz
nixpkgs-d9f7bac91fe5e8eca85d9a68e61f009714ee064b.tar.bz2
nixpkgs-d9f7bac91fe5e8eca85d9a68e61f009714ee064b.tar.lz
nixpkgs-d9f7bac91fe5e8eca85d9a68e61f009714ee064b.tar.xz
nixpkgs-d9f7bac91fe5e8eca85d9a68e61f009714ee064b.tar.zst
nixpkgs-d9f7bac91fe5e8eca85d9a68e61f009714ee064b.zip
nixos/captive-browser: fix module
Fixes the broken metrics evaluation which was caused by a `trace`
warning in stdout which confused `jq` in `pkgs/top-level/metrics.nix`.

Also made the `bind-device` feature optional as suggested after the
merge.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/captive-browser.nix20
1 files changed, 17 insertions, 3 deletions
diff --git a/nixos/modules/programs/captive-browser.nix b/nixos/modules/programs/captive-browser.nix
index 9765a5fa3df..55d474e5c9d 100644
--- a/nixos/modules/programs/captive-browser.nix
+++ b/nixos/modules/programs/captive-browser.nix
@@ -15,6 +15,8 @@ in
       package = mkOption {
         type = types.package;
         default = pkgs.captive-browser;
+        defaultText = "pkgs.captive-browser";
+        description = "Which package to use for captive-browser";
       };
 
       interface = mkOption {
@@ -35,7 +37,7 @@ in
                                          ''http://cache.nixos.org/''
                                        ];
         description = ''
-          the shell (/bin/sh) command executed once the proxy starts.
+          The shell (/bin/sh) command executed once the proxy starts.
           When browser exits, the proxy exits. An extra env var PROXY is available.
 
           Here, we use a separate Chrome instance in Incognito mode, so that
@@ -51,7 +53,7 @@ in
       dhcp-dns = mkOption {
         type = types.str;
         description = ''
-          the shell (/bin/sh) command executed to obtain the DHCP
+          The shell (/bin/sh) command executed to obtain the DHCP
           DNS server address. The first match of an IPv4 regex is used.
           IPv4 only, because let's be real, it's a captive portal.
         '';
@@ -62,6 +64,16 @@ in
         default = "localhost:1666";
         description = ''the listen address for the SOCKS5 proxy server'';
       };
+
+      bindInterface = mkOption {
+        default = true;
+        type = types.bool;
+        description = ''
+          Binds <package>captive-browser</package> to the network interface declared in
+          <literal>cfg.interface</literal>. This can be used to avoid collisions
+          with private subnets.
+        '';
+      };
     };
   };
 
@@ -99,7 +111,9 @@ in
                                                   browser = """${cfg.browser}"""
                                                   dhcp-dns = """${cfg.dhcp-dns}"""
                                                   socks5-addr = """${cfg.socks5-addr}"""
-                                                  bind-device = """${cfg.interface}"""
+                                                  ${optionalString cfg.bindInterface ''
+                                                    bind-device = """${cfg.interface}"""
+                                                  ''}
                                                 ''}
                         exec ${cfg.package}/bin/captive-browser
                       '';