42 lines
561 B
Nix
42 lines
561 B
Nix
{
|
|
self,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
calc
|
|
comma
|
|
difftastic
|
|
evince
|
|
eza
|
|
gcc
|
|
gh
|
|
grc
|
|
gparted
|
|
git
|
|
httpie
|
|
imagemagick
|
|
img2pdf
|
|
imv
|
|
inetutils
|
|
jujutsu
|
|
just
|
|
lazygit
|
|
libtool
|
|
librewolf
|
|
linuxHeaders
|
|
mpv
|
|
networkmanagerapplet
|
|
microfetch
|
|
nmap
|
|
pfetch
|
|
polkit
|
|
ripgrep
|
|
smartmontools
|
|
util-linux
|
|
wireguard-tools
|
|
;
|
|
};
|
|
}
|