nix/hosts/common/packages.nix

22 lines
350 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
];
}