Compare commits

..

1 commit

Author SHA1 Message Date
8b8b78666d
refactor(modules/hm): tidy up the modules
Some checks failed
/ check (push) Successful in 9s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 14s
/ build-vm (push) Failing after 1s
/ report-size (push) Has been skipped
Should make further additions and refactors easier.
2025-03-21 19:07:27 +01:00

View file

@ -1,9 +1,4 @@
{ { lib, config, ... }:
pkgs,
lib,
config,
...
}:
let let
cfg = config.jhome.dev; cfg = config.jhome.dev;
in in
@ -11,12 +6,12 @@ in
config = config =
lib.flip lib.pipe lib.flip lib.pipe
[ [
lib.mkMerge
(lib.mkIf (config.jhome.enable && cfg.enable)) (lib.mkIf (config.jhome.enable && cfg.enable))
lib.mkMerge
] ]
[ [
(lib.mkIf cfg.rust.enable { (lib.mkIf cfg.rust.enable {
home.packages = [ pkgs.rustup ] ++ cfg.rust.extraPackages; home.packages = [ pkgs.rustup ] ++ devcfg.rust.extraPackages;
# Background code checker (for Rust) # Background code checker (for Rust)
programs.bacon = { programs.bacon = {
enable = true; enable = true;
@ -31,8 +26,8 @@ in
}) })
{ {
home = { home = {
sessionVariables.MANPAGER = lib.optionalString cfg.neovimAsManPager "nvim -c 'Man!' -o -"; sessionVariables.MANPAGER = lib.optionalString devcfg.neovimAsManPager "nvim -c 'Man!' -o -";
packages = cfg.extraPackages; packages = devcfg.extraPackages;
}; };
# Github CLI # Github CLI