nixos/gnome3: fix gnome-flashback

This session would fail to start because we didn't have it in systemd.packages
(as we've switched to systemd gnome-session).

Haven't tested custom sessions.
This commit is contained in:
worldofpeace 2019-10-15 18:18:20 -04:00
parent 918b578211
commit 60aedadc59

View File

@ -176,6 +176,10 @@ in
wmCommand = "${pkgs.gnome3.metacity}/bin/metacity";
} ++ cfg.flashback.customSessions);
systemd.packages = with pkgs.gnome3; [
gnome-flashback
];
security.pam.services.gnome-screensaver = {
enableGnomeKeyring = true;
};