From 38192e26829ba3f17c5673a9189a34c297294feb Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Fri, 15 Dec 2023 23:36:27 +0100 Subject: [PATCH] fix --- modules/core/user.nix | 2 +- modules/home/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/user.nix b/modules/core/user.nix index c950903..b438f8c 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -9,7 +9,7 @@ in home-manager = { useUserPackages = true; useGlobalPkgs = true; - extraSpecialArgs = { inherit inputs; }; + extraSpecialArgs = { inherit inputs username; }; users.${username} = { imports = [ (import ./../home) ]; home.username = "${username}"; diff --git a/modules/home/default.nix b/modules/home/default.nix index c18e2ef..32be142 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{inputs, username, ...}: { imports = [(import ./waybar)] ++ [(import ./firefox)]