mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 07:49:28 -05:00
23 lines
469 B
Nix
23 lines
469 B
Nix
{
|
|
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.";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|