1
Fork 0
dotfiles/.bauke/nix/azedia/packages.nix

19 lines
248 B
Nix
Raw Normal View History

2023-08-22 17:36:39 +00:00
# The list of system packages to install.
{ pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
2023-10-15 15:04:47 +00:00
bat
eza
2023-08-22 17:36:39 +00:00
fd
2023-10-15 15:04:47 +00:00
git
kitty.terminfo
libraspberrypi
2023-10-15 15:04:47 +00:00
raspberrypi-eeprom
starship
2023-08-22 17:36:39 +00:00
];
};
}