nix/hosts/common/packages.nix

24 lines
374 B
Nix
Raw Normal View History

2022-04-01 13:28:10 +00:00
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
fzf
2022-06-10 20:24:19 +00:00
# input-fonts
# (nerdfonts.override {
# fonts = [
# "3270"
# "FiraCode"
# "FiraMono"
# "Lekton"
# "RobotoMono"
# "SpaceMono"
# "VictorMono"
# ];
# })
2022-04-01 13:28:10 +00:00
ripgrep
tailscale
unrar
unzip
2022-06-12 20:22:57 +00:00
gitFull
lazygit
2022-04-01 13:28:10 +00:00
];
}