diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/ali/configuration.nix | 1 | ||||
-rw-r--r-- | hosts/ali/extra-utils.nix | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/hosts/ali/configuration.nix b/hosts/ali/configuration.nix index e62f1a8..fb3c3fc 100644 --- a/hosts/ali/configuration.nix +++ b/hosts/ali/configuration.nix @@ -42,6 +42,7 @@ ../../shared/home-manager/development-minimal ../../shared/home-manager/nix ../../shared/home-manager/C + ./extra-utils.nix ]; home.stateVersion = "24.11"; }; 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 + ]; +} |