Compare commits

..

1 commit

Author SHA1 Message Date
0df4e76404
refactor(modules/hm): tidy up the modules
All checks were successful
/ check (push) Successful in 9s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 14s
/ build-vm (push) Successful in 1s
/ report-size (push) Successful in 4s
Should make further additions and refactors easier.
2025-03-21 19:09:56 +01:00

View file

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