26 lines
377 B
Nix
Raw Normal View History

2025-10-25 20:09:07 -04:00
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
options.me = {
jujutsu.enable = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to install jujutsu.";
};
};
config = lib.mkIf config.me.jujutsu.enable {
environment.systemPackages = with pkgs; [
jujutsu
];
};
}