45 lines
547 B
Nix
45 lines
547 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# default
|
|
fastfetch
|
|
vim
|
|
tmux
|
|
git
|
|
wget
|
|
curl
|
|
htop
|
|
|
|
# utils
|
|
lsof
|
|
tree
|
|
ntfs3g
|
|
|
|
# dev
|
|
rustup
|
|
python3
|
|
|
|
|
|
# networking
|
|
net-tools
|
|
inetutils
|
|
ethtool
|
|
|
|
qutebrowser
|
|
neovide
|
|
];
|
|
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-color-emoji
|
|
|
|
nerd-fonts.symbols-only
|
|
nerd-fonts._0xproto
|
|
nerd-fonts.terminess-ttf
|
|
|
|
terminus_font
|
|
font-awesome
|
|
];
|
|
|
|
}
|