nix/hosts/common/packages.nix

14 lines
200 B
Nix
Raw Normal View History

2022-04-01 13:28:10 +00:00
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
fzf
2022-07-15 02:01:18 +00:00
gitFull
lazygit
2022-04-01 13:28:10 +00:00
ripgrep
2022-07-15 02:01:18 +00:00
ripgrep-all
2022-04-01 13:28:10 +00:00
tailscale
unrar
unzip
];
2022-06-29 16:20:33 +00:00
environment.enableAllTerminfo = true;
2022-04-01 13:28:10 +00:00
}