aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/optional')
-rw-r--r--hosts/common/optional/misc.nix28
-rw-r--r--hosts/common/optional/multimedia.nix13
2 files changed, 41 insertions, 0 deletions
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#;
+ ];
+ #};
+}