diff --git a/modules/home.nix b/modules/home.nix index 8ebe992..b45c13d 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -26,12 +26,11 @@ in inherit settings; }; - home-manager.users.${settings.username} = { ... }: { + home-manager.users.${settings.username} = { config, ... }: { imports = homeModules; home.stateVersion = "25.11"; - }; - - home.sessionVariables = { - SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock"; + home.sessionVariables = { + SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock"; + }; }; }