dotfiles/home/apps/wayland.nix

12 lines
167 B
Nix

{
lib,
pkgs,
...
}: let
inherit (pkgs.stdenv.hostPlatform) isLinux;
in {
home.packages = lib.mkIf isLinux (with pkgs; [
clipman
wl-clipboard
]);
}