nichts/modules/other/system.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;
};
};
}