From a9f1822e6d2cded46580842406ac6f66ed639036 Mon Sep 17 00:00:00 2001 From: niten Date: Fri, 12 Jul 2024 13:16:43 -0700 Subject: [PATCH] Add 'config-user' to users --- lib/types/user.nix | 7 +++++++ 1 file changed, 7 insertions(+) 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; + }; }; };