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

19 lines
278 B
Nix
Raw Normal View History

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