hosts: Add common packages list

This commit is contained in:
Mr Hedgehog 2022-04-01 09:28:10 -04:00
parent ff88cef59c
commit c0fdf596f9

21
hosts/common/packages.nix Normal file
View file

@ -0,0 +1,21 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
fzf
input-fonts
(nerdfonts.override {
fonts = [
"3270"
"FiraCode"
"FiraMono"
"Lekton"
"RobotoMono"
"SpaceMono"
"VictorMono"
];
})
ripgrep
tailscale
unrar
unzip
];
}