Files
nixcfg/users/configs/system/ghostty/default.nix
2025-03-15 00:01:02 +00:00

15 lines
159 B
Nix

{
pkgs,
lib,
hostname,
...
}: {
home.file.".config/ghostty/config" = {
source = ./config;
};
programs.ghostty = {
enable = true;
};
}