From 637601d75d5fe92aceceef98cef4b62cc2bfe502 Mon Sep 17 00:00:00 2001 From: osbm Date: Fri, 7 Mar 2025 03:50:33 +0300 Subject: [PATCH] add extra packages --- default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 316fc46..808205b 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,4 @@ -_: +{pkgs, ...}: { imports = [ ./config ./plugins ]; @@ -19,5 +19,13 @@ _: # Sync system clipboard register = "unnamedplus"; }; + extraPackages = with pkgs; [ + nixd + git + git-lfs + cloc + ripgrep + lazygit + ]; }; }