9 lines
142 B
Nix
9 lines
142 B
Nix
{ lib, ... }:
|
|
{
|
|
options.username = lib.mkOption {
|
|
type = lib.types.singleLineStr;
|
|
readOnly = true;
|
|
default = "thomasgl";
|
|
};
|
|
}
|