Refactor a bit by adding globally shared packages in one file

This commit is contained in:
Lillian Violet 2024-01-30 12:03:29 +01:00
parent 0c1da18e13
commit 62df0d1cd4
4 changed files with 43 additions and 28 deletions

View file

@ -0,0 +1,31 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
environment.systemPackages = with pkgs; [
# Custom tools
dvd
dvt
# System tools
age
git
git-filter-repo
home-manager
htop
neofetch
oh-my-zsh
rsync
wget
zsh
# System libraries
noto-fonts
noto-fonts-emoji-blob-bin
noto-fonts-emoji
];
}