diff --git a/configs/desktop.nix b/configs/desktop.nix index 603c6bb..735bd17 100644 --- a/configs/desktop.nix +++ b/configs/desktop.nix @@ -4,6 +4,7 @@ { ... }: { imports = [ ./desktop-packages.nix + ./ghostty.nix ]; services.xserver = { diff --git a/configs/ghostty.nix b/configs/ghostty.nix new file mode 100644 index 0000000..2a6f76f --- /dev/null +++ b/configs/ghostty.nix @@ -0,0 +1,16 @@ +{ inputs, pkgs, ... }: + +{ + ghostty = { + enable = true; + settings = { + theme = gruvbox-material; + cursor-style = block; + font-family = Brass Mono; + font-size = 20; + font-thicken = true; + + window-decoration = none; + }; + } +}