mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
32 lines
854 B
Nix
32 lines
854 B
Nix
# GPaste.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
###### interface
|
|
options = {
|
|
programs.gpaste = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable GPaste, a clipboard manager.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf config.programs.gpaste.enable {
|
|
environment.systemPackages = [ pkgs.gnome.gpaste ];
|
|
services.dbus.packages = [ pkgs.gnome.gpaste ];
|
|
systemd.packages = [ pkgs.gnome.gpaste ];
|
|
# gnome-control-center crashes in Keyboard Shortcuts pane without the GSettings schemas.
|
|
services.xserver.desktopManager.gnome.sessionPath = [ pkgs.gnome.gpaste ];
|
|
# gpaste-reloaded applet doesn't work without the typelib
|
|
services.xserver.desktopManager.cinnamon.sessionPath = [ pkgs.gnome.gpaste ];
|
|
};
|
|
}
|