nix-dotfiles/home-manager/modules/ghostty.nix

10 lines
149 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
fastfetch
];
programs.ghostty = {
enable = true;
enableFishIntegration = true;
};
}