From f9204b97623d75c0c9d90488a112767d8166b5fd Mon Sep 17 00:00:00 2001 From: Keith Amidon Date: Fri, 11 Aug 2017 13:13:33 -0700 Subject: [PATCH] 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= build-vm". --- nixos/modules/services/network-filesystems/samba.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/network-filesystems/samba.nix b/nixos/modules/services/network-filesystems/samba.nix index 87c4f7a8ebc..b3b4d0c915a 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 = {}; }) ];