diff options
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 + ]; +} |