12 lines
290 B
Nix
12 lines
290 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [ pkgs.ghostty ];
|
|
|
|
hjem.users.leo.files.".config/ghostty/config".text = ''
|
|
font-family = Iosevka Term
|
|
font-feature = -calt
|
|
font-feature = -dlig
|
|
font-size = 12
|
|
theme = light:catppuccin-latte,dark:catppuccin-mocha
|
|
'';
|
|
}
|