Files
My_NixOS_Config/home-manager/core/packages.nix
T
Cian-H 3eb4a8e110 Switched main terminal from kitty to ghostty
Since the CSR related bugs in ghostty v1 have been corrected, switching
to ghostty as main terminal. I still love kitty, but its font rendering
and some keyboard handling can be janky at times. Ghostty has been
really good so far on my other machine so think i'll switch long-term
2025-02-05 09:45:22 +00:00

29 lines
394 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: let
monaspaceFont = pkgs.callPackage ../../modules/monaspice_font.nix {};
in {
home.packages =
(with pkgs; [
alejandra
git-extras
git-credential-manager
meld
unzip
])
++ (with unstablePkgs; [
devenv
lazygit
nixd
])
++ [
monaspaceFont
];
}