marleyos/modules/home/programs/just/default.nix

25 lines
335 B
Nix
Raw Normal View History

2024-11-16 17:33:19 -08:00
{
lib,
config,
namespace,
pkgs,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule;
2024-11-16 17:33:19 -08:00
cfg = config.marleyos.programs.just;
2024-11-16 17:33:19 -08:00
in
{
2024-11-16 23:05:17 -08:00
options.marleyos = mkEnableModule "programs.just";
2024-11-16 17:33:19 -08:00
config = mkIf cfg.enable {
home.packages = with pkgs; [
just
];
home.shellAbbrs.j = "just";
};
}