1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gnome3.gdm: allow choosing user account without GNOME

Account chooser depends on AccountsService, which is normally enabled by
GNOME module but it was missing when using GDM without GNOME.
This commit is contained in:
Jan Tojnar 2018-04-30 18:15:28 +02:00
parent 3bfa8563d1
commit 54135fc733
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -135,6 +135,9 @@ in
systemd.services.display-manager.path = [ pkgs.gnome3.gnome-session ];
# Allow choosing an user account
services.accounts-daemon.enable = true;
services.dbus.packages = [ gdm ];
systemd.user.services.dbus.wantedBy = [ "default.target" ];