Migrated from multi repos to monorepo architecture.
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{ lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
options.numbus-computer = {
|
||||
owner = mkOption {
|
||||
type = types.str;
|
||||
example = "Alex";
|
||||
default = "Numbus";
|
||||
description = "The name of the person who owns this computer";
|
||||
};
|
||||
language = mkOption {
|
||||
type = types.str;
|
||||
example = "FR";
|
||||
default = "FR";
|
||||
description = "The language for this computer";
|
||||
};
|
||||
keyboardLayout = mkOption {
|
||||
type = types.str;
|
||||
example = "FR";
|
||||
default = "FR";
|
||||
description = "The keyboard layout for this computer";
|
||||
};
|
||||
locale = mkOption {
|
||||
type = types.str;
|
||||
example = "fr_FR";
|
||||
default = "fr_FR";
|
||||
description = "The default locale for this computer";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user