diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-14 04:37:15 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-14 04:37:15 -0700 |
commit | dc9d92e09218688e3a3f15d5cd728e7c035391cb (patch) | |
tree | 94f04fc45e881c4dba1d7084f53812d9f0d3c2f4 /hosts/common/core | |
parent | 5bf7d4df451df295f660cb352ecf064e3f28f640 (diff) | |
download | nix-dc9d92e09218688e3a3f15d5cd728e7c035391cb.tar nix-dc9d92e09218688e3a3f15d5cd728e7c035391cb.tar.gz nix-dc9d92e09218688e3a3f15d5cd728e7c035391cb.tar.bz2 nix-dc9d92e09218688e3a3f15d5cd728e7c035391cb.tar.lz nix-dc9d92e09218688e3a3f15d5cd728e7c035391cb.tar.xz nix-dc9d92e09218688e3a3f15d5cd728e7c035391cb.tar.zst nix-dc9d92e09218688e3a3f15d5cd728e7c035391cb.zip |
Update richese to new flake layout
Diffstat (limited to '')
-rw-r--r-- | hosts/common/core/default.nix | 175 |
1 files changed, 104 insertions, 71 deletions
diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix index f94a4a2..ba8a861 100644 --- a/hosts/common/core/default.nix +++ b/hosts/common/core/default.nix @@ -9,77 +9,110 @@ documentation.dev.enable = true; documentation.man.enable = true; - environment.systemPackages = builtins.attrValues { - inherit (pkgs) - bc - binutils - conntrack-tools - coreutils - curl - dict - diffutils - dig - dmidecode - encfs - enscript - ffmpeg - file - findutils - flac - fortune - fping - git - imagemagick - inxi - iotop - ipcalc - iperf - iputils - jq - lame - lshw - lsof - mkvtoolnix - mutt - netcat-openbsd - nix-index - nmap - ntfs3g - oath-toolkit - openldap - openssl - patchelf - pciutils - poppler_utils - powertop - psmisc - pv - pwgen - qemu_kvm - qrencode - radeontop - recode - sg3_utils - socat - speedtest-cli - sqlite - sshfs - stoken - sysstat - tcpdump - traceroute - tree - tshark - unrar - unzip - usbutils - vim - wget - whois - wireguard-tools - x265 - zip; - }; + #environment.systemPackages = builtins.attrValues { + # inherit (pkgs) + environment.systemPackages = with pkgs; [ + acl + ansible + bash + bc + bind + binutils + bpftools + bzip2 + colordiff + conntrack-tools + coreutils + cpio + curl + dict + diffutils + dig + dmidecode + encfs + enscript + ethtool + expect + ffmpeg + file + findutils + fio + flac + fortune + fping + ghostscript + git + gnugrep + gnupatch + gnused + gnutar + gzip + imagemagick + inxi + iotop + ipcalc + iperf + iproute2 + iputils + jq + lame + less + lshw + lsof + lvm2 + mkvtoolnix + mutt + nano + netcat-openbsd + nettools + nix-index + nmap + ntfs3g + oath-toolkit + openldap + openssl + patchelf + pciutils + poppler_utils + powertop + procps + psmisc + pv + pwgen + qemu_kvm + qrencode + radeontop + recode + rsync + sg3_utils + socat + speedtest-cli + sqlite + sshfs + stoken + strace + sysstat + tcpdump + traceroute + tree + tshark + unixtools.xxd + unrar + unzip + usbutils + util-linux + vim + wdiff + weechat + wget + whois + wireguard-tools + x265 + xz + zip + zstd#; + ]; + #}; hardware.enableRedistributableFirmware = true; |