diff options
author | volth | 2018-07-20 20:56:59 +0000 |
---|---|---|
committer | volth | 2018-07-20 20:56:59 +0000 |
commit | 2e979e8ceb45c2c251ed189c28a736fec7539c15 (patch) | |
tree | fd52e30ca330b554dec73b71694f916308dda5de /nixos/tests/vault.nix | |
parent | 1a6af9f88ec2405334a9fd6a977ccbcb53472305 (diff) |
[bot] nixos/*: remove unused arguments in lambdas
Diffstat (limited to 'nixos/tests/vault.nix')
-rw-r--r-- | nixos/tests/vault.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/vault.nix b/nixos/tests/vault.nix index 515d5c8bac25..caf0cbb2abfe 100644 --- a/nixos/tests/vault.nix +++ b/nixos/tests/vault.nix @@ -4,7 +4,7 @@ import ./make-test.nix ({ pkgs, ... }: meta = with pkgs.stdenv.lib.maintainers; { maintainers = [ lnl7 ]; }; - machine = { config, pkgs, ... }: { + machine = { pkgs, ... }: { environment.systemPackages = [ pkgs.vault ]; environment.variables.VAULT_ADDR = "http://127.0.0.1:8200"; services.vault.enable = true; |