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