summary refs log tree commit diff
path: root/nixos/tests/nfs
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-08-02 19:25:04 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-08-04 00:23:54 +1000
commit8ae7f8c35998a857f57512ecb7f0fa318ca88463 (patch)
tree539277f1a0f114ead22216a3a15fcbcc00a518d1 /nixos/tests/nfs
parent2b5659c7001f34f8ae4b0af7f5e4aa4a3328a4d7 (diff)
downloadnixpkgs-8ae7f8c35998a857f57512ecb7f0fa318ca88463.tar
nixpkgs-8ae7f8c35998a857f57512ecb7f0fa318ca88463.tar.gz
nixpkgs-8ae7f8c35998a857f57512ecb7f0fa318ca88463.tar.bz2
nixpkgs-8ae7f8c35998a857f57512ecb7f0fa318ca88463.tar.lz
nixpkgs-8ae7f8c35998a857f57512ecb7f0fa318ca88463.tar.xz
nixpkgs-8ae7f8c35998a857f57512ecb7f0fa318ca88463.tar.zst
nixpkgs-8ae7f8c35998a857f57512ecb7f0fa318ca88463.zip
nixos/tests/*: editorconfig fixes
Diffstat (limited to 'nixos/tests/nfs')
-rw-r--r--nixos/tests/nfs/kerberos.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/nfs/kerberos.nix b/nixos/tests/nfs/kerberos.nix
index 1f2d0d453ea..078f0b7814c 100644
--- a/nixos/tests/nfs/kerberos.nix
+++ b/nixos/tests/nfs/kerberos.nix
@@ -3,7 +3,7 @@ import ../make-test-python.nix ({ pkgs, lib, ... }:
 with lib;
 
 let
-  krb5 = 
+  krb5 =
     { enable = true;
       domain_realm."nfs.test"   = "NFS.TEST";
       libdefaults.default_realm = "NFS.TEST";
@@ -31,7 +31,7 @@ in
 
 {
   name = "nfsv4-with-kerberos";
- 
+
   nodes = {
     client = { lib, ... }:
       { inherit krb5 users;