mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
17 lines
289 B
Nix
17 lines
289 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
defaults.terminal = lib.getExe pkgs.ghostty;
|
|
environment.systemPackages = with pkgs; [
|
|
ghostty
|
|
];
|
|
user.home-manager = {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableFishIntegration = config.programs.fish.enable;
|
|
};
|
|
};
|
|
}
|