Add wl-clipboard pkg

This commit is contained in:
ItsDrike 2024-06-20 14:08:31 +02:00
parent ac23da55c5
commit b97be8e632
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 15 additions and 0 deletions

View file

@ -2,5 +2,6 @@ _: {
imports = [ imports = [
./shared.nix ./shared.nix
./desktop.nix ./desktop.nix
./wayland.nix
]; ];
} }

View file

@ -0,0 +1,14 @@
{
osConfig,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
in {
config = mkIf osConfig.myOptions.home-manager.wms.isWayland {
home.packages = with pkgs; [
wl-clipboard
];
};
}