organized

This commit is contained in:
kenji
2025-08-13 08:58:40 -05:00
parent 992e54592b
commit dc379f2ee6
4 changed files with 31 additions and 106 deletions
+22
View File
@@ -0,0 +1,22 @@
{
config,
lib,
...
}: {
options.programs.illogical-impulse = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable the illogical-impulse program module.";
};
settings = {
simpleStarship = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Uses a custom pure-like starship configuration.";
};
};
};
};
}