From d2488629214162372deceee2ac6cd1e8ae531c6e Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Sun, 15 Feb 2026 22:38:22 -0700 Subject: [PATCH] 1771220302 --- modules/home.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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"; + }; }; }