Files
nixos-config/modules/globals/meta.nix
T
2026-03-09 02:20:58 +00:00

9 lines
142 B
Nix

{ lib, ... }:
{
options.username = lib.mkOption {
type = lib.types.singleLineStr;
readOnly = true;
default = "thomasgl";
};
}