hosts/base/packages.nix

48 lines
738 B
Nix
Raw Normal View History

2023-02-26 16:42:49 +01:00
{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
direnv nix-direnv
tmux zellij
wget
rsync
magic-wormhole
2023-02-26 16:42:49 +01:00
git
gnupg
file
ripgrep
fd
htop
ncdu
2023-06-01 22:36:27 +02:00
killall
2023-02-26 16:42:49 +01:00
ranger nnn joshuto
hexyl
rink
kitty
kitty-themes
] ++ lib.optionals config.services.xserver.enable [
pavucontrol
xsensors
kitty
kitty-themes
firefox
ungoogled-chromium
zathura
gthumb
vlc
feh
xsel
];
fonts.fonts = with pkgs; [
vollkorn
alegreya alegreya-sans
b612
raleway
];
}