diff --git a/lib/types/user.nix b/lib/types/user.nix index 7ddf5b8..2b1402e 100644 --- a/lib/types/user.nix +++ b/lib/types/user.nix @@ -119,6 +119,13 @@ with lib; rec { description = "User's surname."; default = null; }; + + config-user = mkOption { + type = nullOr str; + description = + "When generating config, consider this to be the 'real' user."; + default = null; + }; }; };