12 lines
210 B
Nix
12 lines
210 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
options.system = {
|
||
|
singleUser = lib.options.mkOption {
|
||
|
example = "PapaTutuWawa";
|
||
|
readOnly = true;
|
||
|
description = "The username of this single-user system";
|
||
|
};
|
||
|
};
|
||
|
}
|