diff options
author | Alan Pearce | 2018-06-05 11:08:33 +0200 |
---|---|---|
committer | Alan Pearce | 2018-06-05 11:08:33 +0200 |
commit | be1a8162d354f1bb469c9ba7ce926ac6b918177a (patch) | |
tree | 4b6a29802d0447bd716662230f471e36383a3eef /modules | |
parent | 822dd7a7daae1ae2ca98bd988884d5f076bbf3f7 (diff) | |
download | nixos-configuration-be1a8162d354f1bb469c9ba7ce926ac6b918177a.tar.lz nixos-configuration-be1a8162d354f1bb469c9ba7ce926ac6b918177a.tar.zst nixos-configuration-be1a8162d354f1bb469c9ba7ce926ac6b918177a.zip |
Nitrokey: Fix environment variable syntax
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hardware/nitrokey.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hardware/nitrokey.nix b/modules/hardware/nitrokey.nix index dc32e9b..90b08cf 100644 --- a/modules/hardware/nitrokey.nix +++ b/modules/hardware/nitrokey.nix @@ -17,7 +17,7 @@ services.pcscd.enable = true; services.keybase.enable = true; services.kbfs.enable = true; - environment.variables.NIX_SKIP_KEYBASE_CHECKS = 1; + environment.variables.NIX_SKIP_KEYBASE_CHECKS = "1"; services.tor = { enable = true; |