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