summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authorKeith Amidon <kamidon@users.noreply.github.com>2017-08-11 13:13:33 -0700
committerJoachim F <joachifm@users.noreply.github.com>2017-08-11 20:13:33 +0000
commitf9204b97623d75c0c9d90488a112767d8166b5fd (patch)
treec5c3af82abeacf1aad84fbe51a3e16d96ed9c455 /nixos/modules/services/network-filesystems
parent9dfc2900271e38fda67c9bc24b03620a93ec1e96 (diff)
downloadnixlib-f9204b97623d75c0c9d90488a112767d8166b5fd.tar
nixlib-f9204b97623d75c0c9d90488a112767d8166b5fd.tar.gz
nixlib-f9204b97623d75c0c9d90488a112767d8166b5fd.tar.bz2
nixlib-f9204b97623d75c0c9d90488a112767d8166b5fd.tar.lz
nixlib-f9204b97623d75c0c9d90488a112767d8166b5fd.tar.xz
nixlib-f9204b97623d75c0c9d90488a112767d8166b5fd.tar.zst
nixlib-f9204b97623d75c0c9d90488a112767d8166b5fd.zip
nixos/samba: fix pam service name typo (#28049)
The PAM service name used before this commit was "sambda", with an
extra 'd'. For some reason I don't quite fully understand this typo
prevents GDM from starting. This change fixes that as tested in VMs
built using "nixos-rebuild -I nixpkgs=<mypkgs> build-vm".
Diffstat (limited to 'nixos/modules/services/network-filesystems')
-rw-r--r--nixos/modules/services/network-filesystems/samba.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/network-filesystems/samba.nix b/nixos/modules/services/network-filesystems/samba.nix
index 87c4f7a8ebcb..b3b4d0c915ac 100644
--- a/nixos/modules/services/network-filesystems/samba.nix
+++ b/nixos/modules/services/network-filesystems/samba.nix
@@ -243,7 +243,7 @@ in
           };
         };
 
-        security.pam.services.sambda = {};
+        security.pam.services.samba = {};
 
       })
     ];