hm: add some packages to hm-only home

This commit is contained in:
2023-10-27 10:31:00 +03:00
committed by Motiejus Jakštys
parent eb4d8c0652
commit 3ccb63b1e5
3 changed files with 25 additions and 10 deletions

View File

@@ -4,6 +4,7 @@
stateVersion,
email,
devEnvironment,
hmOnly,
...
}: {
home = {
@@ -14,18 +15,30 @@
};
home.packages = with pkgs;
if devEnvironment
then [
go
(
if devEnvironment
then [
go
zigpkgs."0.11.0"
sbt
zigpkgs."0.11.0"
sbt
scala_2_12
metals
coursier
]
else [];
scala_2_12
metals
coursier
]
else []
)
++ (
if hmOnly
then [
ncdu
tokei
vimv-rs
hyperfine
]
else []
);
programs.direnv.enable = true;