2023-12-01 14:12:33 -05:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2024-03-26 15:32:48 -04:00
|
|
|
}: let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
flakeDir = config.environment.variables.FLAKE;
|
|
|
|
cfg = config.vars;
|
|
|
|
in {
|
|
|
|
options.vars = {
|
2024-01-09 13:13:04 -05:00
|
|
|
mainUser = mkOption {
|
2023-12-01 14:12:33 -05:00
|
|
|
type = types.str;
|
2023-10-18 13:50:00 -04:00
|
|
|
description = ''
|
|
|
|
Username that was defined at the initial setup process
|
|
|
|
'';
|
2023-12-01 14:12:33 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
hostName = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = ''
|
|
|
|
Hostname that was defined at the initial setup process
|
|
|
|
'';
|
2023-10-18 13:50:00 -04:00
|
|
|
};
|
|
|
|
|
2024-01-24 18:39:18 -05:00
|
|
|
promptMainColor = mkOption {
|
2024-04-01 13:05:08 -04:00
|
|
|
type = types.enum ["red" "green" "blue" "purple" "orange" "yellow" "cyan" "pink"];
|
2024-01-24 18:39:18 -05:00
|
|
|
default = "purple";
|
|
|
|
};
|
|
|
|
|
|
|
|
promptColors = mkOption {
|
|
|
|
description = ''
|
|
|
|
Colors used in starship prompt
|
|
|
|
'';
|
|
|
|
|
|
|
|
default = import ./prompt-schemes.nix cfg.promptMainColor;
|
|
|
|
|
2024-03-26 15:32:48 -04:00
|
|
|
readOnly = true;
|
2024-05-05 23:07:06 -04:00
|
|
|
type = types.submodule {
|
|
|
|
options = let
|
|
|
|
inherit (types) str;
|
|
|
|
in {
|
|
|
|
textColor = mkOption {type = str;};
|
|
|
|
firstColor = mkOption {type = str;};
|
|
|
|
secondColor = mkOption {type = str;};
|
|
|
|
thirdColor = mkOption {type = str;};
|
|
|
|
fourthColor = mkOption {type = str;};
|
2024-01-24 18:39:18 -05:00
|
|
|
};
|
2024-05-05 23:07:06 -04:00
|
|
|
};
|
2024-01-24 18:39:18 -05:00
|
|
|
};
|
|
|
|
|
2023-10-18 13:50:00 -04:00
|
|
|
configDir = mkOption {
|
2023-12-01 14:12:33 -05:00
|
|
|
type = types.str;
|
2024-03-26 13:55:55 -04:00
|
|
|
default = "${flakeDir}/devices/${cfg.hostName}/config";
|
2023-10-18 13:50:00 -04:00
|
|
|
description = ''
|
2023-10-28 18:20:09 -04:00
|
|
|
The path to where most of the devices' configs are in the .nix folder
|
2023-10-18 13:50:00 -04:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-12-08 12:50:38 -05:00
|
|
|
neovimIde = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
};
|
2023-10-18 13:50:00 -04:00
|
|
|
};
|
2024-03-26 15:32:48 -04:00
|
|
|
|
|
|
|
config = {
|
|
|
|
environment.variables.FLAKE = lib.mkDefault "/home/${cfg.mainUser}/.nix";
|
|
|
|
};
|
2023-10-18 13:50:00 -04:00
|
|
|
}
|