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".

authored by

Keith Amidon and committed by
Joachim F
f9204b97 9dfc2900

+1 -1
+1 -1
nixos/modules/services/network-filesystems/samba.nix
··· 243 243 }; 244 244 }; 245 245 246 - security.pam.services.sambda = {}; 246 + security.pam.services.samba = {}; 247 247 248 248 }) 249 249 ];