mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 10:09:42 +00:00
15 lines
199 B
Nix
15 lines
199 B
Nix
|
{
|
||
|
osConfig,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib) mkIf;
|
||
|
in {
|
||
|
config = mkIf osConfig.myOptions.home-manager.wms.isWayland {
|
||
|
home.packages = with pkgs; [
|
||
|
wl-clipboard
|
||
|
];
|
||
|
};
|
||
|
}
|