diff options
author | Linnnus <[email protected]> | 2025-04-04 08:34:29 +0000 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-04-04 13:05:23 +0000 |
commit | 7f81d8c100b2425e43bdd85aceac0273c35d0c56 (patch) | |
tree | 20f66eb29a22ccb340e92594d56f113d249b9892 /hosts/ali/extra-utils.nix | |
parent | 1c7fcddb45ca5bd474bfc438986617c1d2696c67 (diff) |
ali: Add elinks, ffmpeg
Diffstat (limited to 'hosts/ali/extra-utils.nix')
-rw-r--r-- | hosts/ali/extra-utils.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/ali/extra-utils.nix b/hosts/ali/extra-utils.nix new file mode 100644 index 0000000..056c612 --- /dev/null +++ b/hosts/ali/extra-utils.nix @@ -0,0 +1,11 @@ +# This HM module adds extra utilities specific to this host. +{pkgs, ...}: let +in { + home.packages = with pkgs; [ + # A "real" browser is too heavy. + elinks + + # For watching movies. + ffmpeg + ]; +} |