hosts/base/packages.nix

48 lines
751 B
Nix
Raw Permalink 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
2024-05-20 14:30:47 +02:00
git git-lfs
2023-02-26 16:42:49 +01:00
gnupg
file
ripgrep
fd
htop
ncdu
2023-06-01 22:36:27 +02:00
killall
2024-04-27 14:30:08 +02:00
ranger nnn # joshuto
2023-02-26 16:42:49 +01:00
hexyl
rink
kitty
kitty-themes
] ++ lib.optionals config.services.xserver.enable [
pavucontrol
xsensors
kitty
kitty-themes
firefox
ungoogled-chromium
zathura
gthumb
vlc
feh
xsel
];
2023-12-02 21:36:19 +01:00
fonts.packages = with pkgs; [
2023-02-26 16:42:49 +01:00
vollkorn
alegreya alegreya-sans
b612
raleway
];
}