summary refs log tree commit diff
path: root/nixos/tests/samba.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/samba.nix')
-rw-r--r--nixos/tests/samba.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/samba.nix b/nixos/tests/samba.nix
index e446284fc0e..2802e00a5b1 100644
--- a/nixos/tests/samba.nix
+++ b/nixos/tests/samba.nix
@@ -7,7 +7,7 @@ import ./make-test.nix ({ pkgs, ... }:
 
   nodes =
     { client =
-        { config, pkgs, ... }:
+        { pkgs, ... }:
         { fileSystems = pkgs.lib.mkVMOverride
             { "/public" = {
                 fsType = "cifs";
@@ -18,7 +18,7 @@ import ./make-test.nix ({ pkgs, ... }:
         };
 
       server =
-        { config, pkgs, ... }:
+        { ... }:
         { services.samba.enable = true;
           services.samba.shares.public =
             { path = "/public";