punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
26 lines
381 B
Nix
26 lines
381 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.marleyos) mkEnableModule;
|
|
|
|
cfg = config.marleyos.services.clipboard;
|
|
in
|
|
{
|
|
options = mkEnableModule "services.clipboard";
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
clipboard-jh
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
CLIPBOARD_THEME = "ansi";
|
|
};
|
|
};
|
|
}
|