diff --git a/modules/home/bundles/desktop/default.nix b/modules/home/bundles/desktop/default.nix index 125aa79..fa48fe7 100644 --- a/modules/home/bundles/desktop/default.nix +++ b/modules/home/bundles/desktop/default.nix @@ -2,6 +2,7 @@ config, lib, namespace, + pkgs, ... }: let inherit (lib) mkIf mkEnableOption; @@ -38,5 +39,9 @@ in { slurp = enabled; }; }; + + home.packages = with pkgs; [ + rclip + ]; }; }