This commit is contained in:
2026-07-12 15:40:55 -03:00
parent 29377d0c9a
commit 536b033b6b
6 changed files with 25 additions and 11 deletions
+13
View File
@@ -0,0 +1,13 @@
{ lib, config, pkgs, ... }:
{
options.custom = {
openspec.enable = lib.mkEnableOption "enable openspec";
};
config = lib.mkIf config.custom.openspec.enable {
home.packages = with pkgs; [
openspec
];
};
}