dotfiles/home/apps/wayland.nix

13 lines
167 B
Nix
Raw Normal View History

2023-03-08 08:52:23 +01:00
{
lib,
pkgs,
...
}: let
inherit (pkgs.stdenv.hostPlatform) isLinux;
in {
home.packages = lib.mkIf isLinux (with pkgs; [
2023-03-28 12:59:48 +02:00
clipman
wl-clipboard
]);
2023-03-08 08:52:23 +01:00
}