fix: add wl-clipboard

Required by some apps to work with wayland clipboard, e.g. neovim
This commit is contained in:
Felix Schröter 2022-06-29 17:56:09 +02:00
parent 63bc92a5c9
commit 31a080483b
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,5 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = [ ./x11.nix ./gtk.nix ./gnome.nix ]; imports = [ ./x11.nix ./wayland.nix ./gtk.nix ./gnome.nix ];
} }

5
desktop/wayland.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ wl-clipboard ];
}