NixOS-Config/nixos/shared/packages/default.nix

40 lines
532 B
Nix
Raw Normal View History

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
environment.systemPackages = with pkgs; [
# System tools
age
2024-01-30 14:10:27 +01:00
alejandra
git
git-filter-repo
home-manager
htop
neofetch
oh-my-zsh
rsync
2024-02-01 11:31:36 +01:00
spacevim
wget
zsh
2024-02-07 13:50:03 +01:00
tldr
# System libraries
2024-02-22 11:55:48 +01:00
];
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-emoji-blob-bin
noto-fonts-emoji
2024-02-22 11:55:48 +01:00
liberation_ttf
fira-code
fira-code-symbols
mplus-outline-fonts.githubRelease
dina-font
proggyfonts
];
}