3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #96925 from jtojnar/gpaste-session-path

nixos/gpaste: return sessionPath
This commit is contained in:
WORLDofPEACE 2020-09-02 15:43:53 -04:00 committed by GitHub
commit 8739e4235e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,5 +30,7 @@ with lib;
environment.systemPackages = [ pkgs.gnome3.gpaste ];
services.dbus.packages = [ pkgs.gnome3.gpaste ];
systemd.packages = [ pkgs.gnome3.gpaste ];
# gnome-control-center crashes in Keyboard Shortcuts pane without the GSettings schemas.
services.xserver.desktopManager.gnome3.sessionPath = [ pkgs.gnome3.gpaste ];
};
}