8 lines
158 B
Nix
8 lines
158 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
config = lib.mkIf config.nomarchy.apps.ghostty.enable {
|
|
xdg.configFile."ghostty/config".source = ./config/config;
|
|
};
|
|
}
|