feature(ghostty): add home-manager module for ghostty
This commit is contained in:
20
modules/home-manager/ghostty.nix
Normal file
20
modules/home-manager/ghostty.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
programs.ghostty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
clipboard-paste-protection = false;
|
||||
clipboard-read = "allow";
|
||||
font-family = "0xProto Nerd Font Mono";
|
||||
font-size = 9;
|
||||
gtk-titlebar = false;
|
||||
scrollback-limit = 10000;
|
||||
shell-integration = "zsh";
|
||||
theme = "noctalia"; # generated by noctalia-shell
|
||||
window-decoration = "auto";
|
||||
window-padding-x = 10;
|
||||
window-padding-y = 10;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user