32 lines
725 B
Nix
32 lines
725 B
Nix
{ 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";
|
|
};
|
|
};
|
|
} |