aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/common/core/default.nix28
-rw-r--r--hosts/common/optional/misc.nix28
-rw-r--r--hosts/common/optional/multimedia.nix13
3 files changed, 41 insertions, 28 deletions
diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix
index ba8a861..fdd5589 100644
--- a/hosts/common/core/default.nix
+++ b/hosts/common/core/default.nix
@@ -13,55 +13,35 @@
# 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
@@ -73,22 +53,16 @@
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
@@ -103,11 +77,9 @@
util-linux
vim
wdiff
- weechat
wget
whois
wireguard-tools
- x265
xz
zip
zstd#;
diff --git a/hosts/common/optional/misc.nix b/hosts/common/optional/misc.nix
new file mode 100644
index 0000000..60565a9
--- /dev/null
+++ b/hosts/common/optional/misc.nix
@@ -0,0 +1,28 @@
+{ pkgs, ... }:
+{
+ environment.systemPackages = with pkgs; [
+ ansible
+ bpftools
+ dict
+ encfs
+ enscript
+ expect
+ fio
+ fortune
+ ghostscript
+ imagemagick
+ inxi
+ iotop
+ ipcalc
+ iperf
+ jq
+ mutt
+ poppler_utils
+ powertop
+ qrencode
+ radeontop
+ speedtest-cli
+ sshfs
+ weechat
+ ];
+}
diff --git a/hosts/common/optional/multimedia.nix b/hosts/common/optional/multimedia.nix
new file mode 100644
index 0000000..fd8a83c
--- /dev/null
+++ b/hosts/common/optional/multimedia.nix
@@ -0,0 +1,13 @@
+{ pkgs, ... }:
+{
+ #environment.systemPackages = builtins.attrValues {
+ # inherit (pkgs)
+ environment.systemPackages = with pkgs; [
+ ffmpeg
+ flac
+ lame
+ mkvtoolnix
+ x265#;
+ ];
+ #};
+}