Cleanup with LSP guidance

This commit is contained in:
2026-02-17 15:21:54 -07:00
parent 8ef20405ba
commit 432d5df195
17 changed files with 71 additions and 53 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, inputs, ... }:
{ inputs, ... }:
let
settings = import ../settings.nix;
@@ -26,11 +26,13 @@ in
inherit settings;
};
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-manager.users.${settings.username} =
{ config, ... }:
{
imports = homeModules;
home.stateVersion = "25.11";
home.sessionVariables = {
SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock";
};
};
};
}