1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 17:47:57 +00:00

maccy: init

This commit is contained in:
RGBCube 2025-07-31 17:09:45 +03:00
parent 51c02a78a2
commit 130a54db4e
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

30
modules/darwin/macccy.nix Normal file
View file

@ -0,0 +1,30 @@
{ lib, ... }: let
inherit (lib.strings) toJSON;
in {
homebrew.casks = [ "maccy" ];
system.defaults.CustomSystemPreferences."org.p0deje.Maccy" = {
KeyboardShortcuts_delete = 0;
KeyboardShortcuts_pin = 0;
KeyboardShortcuts_popup = toJSON { carbonKeyCode = 9; carbonModifiers = 4352; }; # control+command+v
SUEnableAutomaticChecks = 0;
enabledPasteboardTypes = [
"public.png"
"public.file-url"
"public.utf8-plain-text"
"public.rtf"
"public.tiff"
"public.html"
];
menuIcon = "clipboard";
popupPosition = "window";
searchMode = "fuzzy";
showFooter = 0;
showSearch = 1;
showTitle = 0;
};
}