config/modules/gui/clipboard.nix

11 lines
264 B
Nix

{ config, lib, pkgs, scripts, ... }:
(lib.mkIf (config.riley.gui) {
# Add some shell scripts that abstract away the
# horrible reality that the clipboard is managed by
# the display server.
users.users."riley".packages = with scripts; [ c p ];
})