16 lines
306 B
Nix
16 lines
306 B
Nix
{...}: {
|
|
config.flake.modules.homeManager.opencode = {
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options.azos.opencode.enable = lib.mkOption {
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
config = lib.mkIf config.azos.opencode.enable {
|
|
programs.opencode.enable = true;
|
|
};
|
|
};
|
|
}
|