nixos-config/modules/users/default.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";
};
};
}