marleyos/modules/home/services/clipboard/default.nix

27 lines
390 B
Nix
Raw Normal View History

2024-11-16 21:18:54 -08:00
{
lib,
config,
namespace,
pkgs,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule;
2024-11-16 21:18:54 -08:00
cfg = config.marleyos.services.clipboard;
2024-11-16 21:18:54 -08:00
in
{
2024-11-16 23:05:17 -08:00
options.marleyos = mkEnableModule "services.clipboard";
2024-11-16 21:18:54 -08:00
config = mkIf cfg.enable {
home.packages = with pkgs; [
clipboard-jh
];
home.sessionVariables = {
CLIPBOARD_THEME = "ansi";
};
};
}