nix-dotfiles/home-manager/modules/ghostty.nix
2025-03-16 03:05:52 -06:00

10 lines
207 B
Nix

{ config, pkgs, lib, ... }:
{
xdg.configFile = {
"ghostty" = {
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.config/ghostty";
recursive = true;
};
};
}