mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:19:42 +00:00
Add wl-clipboard pkg
This commit is contained in:
parent
ac23da55c5
commit
b97be8e632
|
@ -2,5 +2,6 @@ _: {
|
|||
imports = [
|
||||
./shared.nix
|
||||
./desktop.nix
|
||||
./wayland.nix
|
||||
];
|
||||
}
|
||||
|
|
14
home/packages/cli/wayland.nix
Normal file
14
home/packages/cli/wayland.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue