feat: enable git lfs, update zshrc, cleanup flake devshell

This commit is contained in:
2025-08-07 16:57:42 +05:00
parent fc64887d00
commit 41994e7f55
3 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@
devShell.x86_64-linux = let pkgs = nixpkgs.legacyPackages.x86_64-linux; devShell.x86_64-linux = let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in pkgs.mkShell { in pkgs.mkShell {
buildInputs = with pkgs; [ nil nixfmt-classic lua-language-server ]; buildInputs = with pkgs; [ nil lua-language-server ];
}; };
}; };
} }

View File

@@ -4,6 +4,7 @@
enable = true; enable = true;
userName = config.hostSpec.userFullName; userName = config.hostSpec.userFullName;
userEmail = config.hostSpec.email.user; userEmail = config.hostSpec.email.user;
lfs.enable = true;
extraConfig = { extraConfig = {
gpg = { format = "ssh"; }; gpg = { format = "ssh"; };

View File

@@ -6,7 +6,6 @@
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
initContent = '' initContent = ''
source <(nh completions --shell zsh)
eval "$(zoxide init zsh)" eval "$(zoxide init zsh)"
''; '';