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