nixos-config/modules/users/default.nix

12 lines
210 B
Nix
Raw Normal View History

2021-08-04 17:07:42 +00:00
{ lib, ... }:
{
options.system = {
singleUser = lib.options.mkOption {
example = "PapaTutuWawa";
readOnly = true;
description = "The username of this single-user system";
};
};
}