2024-10-27 10:47:44 +01:00
|
|
|
{lib, ...}: let
|
2025-04-09 15:31:18 +02:00
|
|
|
inherit (lib.options) mkOption;
|
|
|
|
inherit (lib.types) str;
|
2024-04-10 17:39:26 +02:00
|
|
|
in {
|
2024-05-15 00:14:59 +02:00
|
|
|
options.modules.other.system = {
|
|
|
|
username = mkOption {
|
|
|
|
description = "username for this system";
|
2025-04-09 15:31:18 +02:00
|
|
|
type = str;
|
2024-05-15 00:14:59 +02:00
|
|
|
};
|
|
|
|
};
|
2024-04-10 17:39:26 +02:00
|
|
|
}
|