marleyos/old/home/services/clipboard.nix
2024-11-15 17:45:23 -08:00

10 lines
136 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
clipboard-jh
];
home.sessionVariables = {
CLIPBOARD_THEME = "ansi";
};
}