diff --git a/desktop/default.nix b/desktop/default.nix index 18b9ce1..0c6d2bb 100644 --- a/desktop/default.nix +++ b/desktop/default.nix @@ -1,5 +1,5 @@ { config, pkgs, ... }: { - imports = [ ./x11.nix ./gtk.nix ./gnome.nix ]; + imports = [ ./x11.nix ./wayland.nix ./gtk.nix ./gnome.nix ]; } diff --git a/desktop/wayland.nix b/desktop/wayland.nix new file mode 100644 index 0000000..63f3e22 --- /dev/null +++ b/desktop/wayland.nix @@ -0,0 +1,5 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ wl-clipboard ]; +}