From e2c29412a59742b78ad1ebf12af50715b28558f4 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Fri, 15 Dec 2023 22:57:59 +0100 Subject: [PATCH] fix --- modules/core/user.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/user.nix b/modules/core/user.nix index e4d0b6d..c950903 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -12,7 +12,7 @@ in extraSpecialArgs = { inherit inputs; }; users.${username} = { imports = [ (import ./../home) ]; - home.username = username; + home.username = "${username}"; home.homeDirectory = "/home/${username}"; home.stateVersion = "22.11"; programs.home-manager.enable = true;