40 lines
532 B
Nix
40 lines
532 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [
|
|
# System tools
|
|
age
|
|
alejandra
|
|
git
|
|
git-filter-repo
|
|
home-manager
|
|
htop
|
|
neofetch
|
|
oh-my-zsh
|
|
rsync
|
|
spacevim
|
|
wget
|
|
zsh
|
|
tldr
|
|
|
|
# System libraries
|
|
];
|
|
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-emoji-blob-bin
|
|
noto-fonts-emoji
|
|
liberation_ttf
|
|
fira-code
|
|
fira-code-symbols
|
|
mplus-outline-fonts.githubRelease
|
|
dina-font
|
|
proggyfonts
|
|
];
|
|
}
|