fix: set and install clipboard

This commit is contained in:
punkfairie 2025-05-26 20:08:43 -07:00
parent 1a998d1edb
commit fb29126d4c
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 10 additions and 4 deletions

View file

@ -86,10 +86,6 @@
};
# config = lib.mkIf pkgs.stdenv.isLinux {
# home.packages = [
# cfg.pinentry
# cfg.clipboard.package
# ];
#
# # TODO: move these to respective modules
# programs.rbw = lib.mkDefault {

View file

@ -14,5 +14,15 @@
Requires = ["graphical-session-pre.target"];
};
};
marleycfg.apps.clipboard = {
package = pkgs.wl-clipboard;
copy-command = lib.getExe' pkgs.wl-clipboard "wl-copy";
paste-command = lib.getExe' pkgs.wl-clipboard "wl-paste";
};
home.packages = [
config.marleycfg.apps.clipboard.package
];
};
}