From 41994e7f5587a06000fe0b47a3a327cf96dcb8be Mon Sep 17 00:00:00 2001 From: Shahab Dogar Date: Thu, 7 Aug 2025 16:57:42 +0500 Subject: [PATCH] feat: enable git lfs, update zshrc, cleanup flake devshell --- flake.nix | 2 +- home/shahab/common/core/git.nix | 1 + home/shahab/common/optional/zsh.nix | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 6906fba..e456d9d 100644 --- a/flake.nix +++ b/flake.nix @@ -66,7 +66,7 @@ devShell.x86_64-linux = let pkgs = nixpkgs.legacyPackages.x86_64-linux; in pkgs.mkShell { - buildInputs = with pkgs; [ nil nixfmt-classic lua-language-server ]; + buildInputs = with pkgs; [ nil lua-language-server ]; }; }; } diff --git a/home/shahab/common/core/git.nix b/home/shahab/common/core/git.nix index 2881c22..37df1f8 100644 --- a/home/shahab/common/core/git.nix +++ b/home/shahab/common/core/git.nix @@ -4,6 +4,7 @@ enable = true; userName = config.hostSpec.userFullName; userEmail = config.hostSpec.email.user; + lfs.enable = true; extraConfig = { gpg = { format = "ssh"; }; diff --git a/home/shahab/common/optional/zsh.nix b/home/shahab/common/optional/zsh.nix index d414156..39d74cb 100644 --- a/home/shahab/common/optional/zsh.nix +++ b/home/shahab/common/optional/zsh.nix @@ -6,7 +6,6 @@ syntaxHighlighting.enable = true; initContent = '' - source <(nh completions --shell zsh) eval "$(zoxide init zsh)" '';