nixos/modules/ghostty.nix

16 lines
227 B
Nix
Raw Normal View History

2025-01-31 15:13:22 +01:00
{
pkgs,
lib,
...
}: {
service.terminal.default = lib.getExe pkgs.ghostty;
environment.systemPackages = with pkgs; [
ghostty
];
user.home-manager = {
programs.ghostty = {
enable = true;
};
};
}