This commit is contained in:
John Lancaster
2025-06-30 22:45:04 -05:00
parent c954124c13
commit 57d59a9dea
5 changed files with 53 additions and 23 deletions

View File

@@ -11,4 +11,16 @@
default = "personal";
description = "Profile type for the Home Manager configuration.";
};
options.shell = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Whether to enable all the zsh stuff";
};
options.ssh = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Whether to enable SSH configuration";
};
}