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".
This commit is contained in:
Keith Amidon 2017-08-11 13:13:33 -07:00 committed by Joachim F
parent 9dfc290027
commit f9204b9762

View file

@ -243,7 +243,7 @@ in
};
};
security.pam.services.sambda = {};
security.pam.services.samba = {};
})
];