mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-09 16:33:57 -05:00
feat: set more ghostty options
This commit is contained in:
parent
a68ff34ebb
commit
a3246d5297
1 changed files with 6 additions and 3 deletions
|
|
@ -12,9 +12,7 @@ let
|
||||||
if builtins.isString v then
|
if builtins.isString v then
|
||||||
''${k} = "${toString v}"''
|
''${k} = "${toString v}"''
|
||||||
else
|
else
|
||||||
''${k} = ${
|
''${k} = ${if builtins.isBool v then if v then "true" else "false" else toString v}'';
|
||||||
if builtins.isBool v then if v then "true" else "false" else toString v
|
|
||||||
}'';
|
|
||||||
};
|
};
|
||||||
configFile = format.generate "ghostty-config" cfg.settings;
|
configFile = format.generate "ghostty-config" cfg.settings;
|
||||||
in
|
in
|
||||||
|
|
@ -62,6 +60,9 @@ in
|
||||||
"14=#85dc85"
|
"14=#85dc85"
|
||||||
"15=#e2637f"
|
"15=#e2637f"
|
||||||
];
|
];
|
||||||
|
mouse-hide-while-typing = true;
|
||||||
|
app-notifications = "no-clipboard-copy";
|
||||||
|
|
||||||
copy-on-select = false;
|
copy-on-select = false;
|
||||||
clipboard-read = "allow";
|
clipboard-read = "allow";
|
||||||
clipboard-write = "allow";
|
clipboard-write = "allow";
|
||||||
|
|
@ -72,6 +73,8 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
auto-update = "off";
|
auto-update = "off";
|
||||||
|
confirm-close-surface = false;
|
||||||
|
shell-integration = "detect";
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue