9 lines
136 B
Nix
9 lines
136 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
};
|
|
|
|
xdg.configFile."ghostty/config".source = ./ghostty/config;
|
|
}
|