From 749bdf08c68e8a152a4731565a364d1d6d3fae6f Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 11 May 2024 20:14:08 +0200 Subject: [PATCH] Add the `userInfo` variable to the system-wide home-manager --- lib/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/configuration.nix b/lib/configuration.nix index 33fcae8..eebd093 100644 --- a/lib/configuration.nix +++ b/lib/configuration.nix @@ -44,6 +44,10 @@ if (configPath != null) then { ${username} = { pkgs, ... }@args: import configPath ({ + userInfo = { + name = username; + } // user; + userConfig = { inherit hostname username; } // user;