nichts/modules/other/system.nix

11 lines
200 B
Nix
Raw Normal View History

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