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

23 lines
308 B
Nix
Raw Normal View History

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