11 lines
223 B
Nix
11 lines
223 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkOption;
|
|
inherit (lib.types) str;
|
|
in {
|
|
options.modules.other.system = {
|
|
username = mkOption {
|
|
description = "username for this system";
|
|
type = str;
|
|
};
|
|
};
|
|
}
|