nichts/modules/other/system.mod.nix
2025-07-16 22:15:41 +02:00

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;
};
};
}