summaryrefslogtreecommitdiff
path: root/nixos/modules/features/wayland-tools/default.nix
blob: 399fcb08a13612bb64f967446e49526347ec3dc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  # Wayland clipboard, screenshot, launcher and input tooling
  environment.systemPackages = with pkgs; [
    cliphist
    fuzzel
    grim
    slurp
    wl-clipboard
    wtype
    xwayland-satellite
  ];
}