2023-10-18 13:50:00 -04:00
|
|
|
{ lib, ... }: {
|
2023-10-28 18:20:09 -04:00
|
|
|
options.services.device-vars = with lib; {
|
2023-10-18 13:50:00 -04:00
|
|
|
username = mkOption {
|
|
|
|
description = ''
|
|
|
|
Username that was defined at the initial setup process
|
|
|
|
'';
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
};
|
|
|
|
|
|
|
|
configDir = mkOption {
|
|
|
|
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
|
|
|
'';
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
};
|
|
|
|
|
|
|
|
fontSize = mkOption {
|
|
|
|
type = types.nullOr types.float;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|