fix: add wl-clipboard
Required by some apps to work with wayland clipboard, e.g. neovim
This commit is contained in:
parent
63bc92a5c9
commit
31a080483b
|
@ -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
5
desktop/wayland.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [ wl-clipboard ];
|
||||||
|
}
|
Loading…
Reference in a new issue