blob: 056c61271b35548376a685ec138c1a9bafe2e2eb (
plain)
1
2
3
4
5
6
7
8
9
10
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
];
}
|