about summary refs log tree commit diff stats
path: root/modules/by-name/nv/nvim/module.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-09-02 09:16:51 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-09-02 09:16:51 +0200
commit9c2e64516472f3dbf66dbad775ab1dba6f86baa3 (patch)
tree192918c94896d738e8b4de01373b636524a28783 /modules/by-name/nv/nvim/module.nix
parenttreewide: Update (diff)
downloadnixos-config-9c2e64516472f3dbf66dbad775ab1dba6f86baa3.zip
treewide: Remove `with pkgs;`
This is an antipattern and makes grepping for specific packages harder.
Diffstat (limited to 'modules/by-name/nv/nvim/module.nix')
-rw-r--r--modules/by-name/nv/nvim/module.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/by-name/nv/nvim/module.nix b/modules/by-name/nv/nvim/module.nix
index 29488662..81d7febf 100644
--- a/modules/by-name/nv/nvim/module.nix
+++ b/modules/by-name/nv/nvim/module.nix
@@ -73,21 +73,21 @@ in {
           ---------------------------------------------------------------------------
         '';
 
-        extraPackages = with pkgs; [
+        extraPackages = [
           /*
           These are mostly linters and formatters used for different file types.
           Including them here is fine, as they are not necessarily-sync able to different people.
           */
           # nix
-          alejandra
-          statix
+          pkgs.alejandra
+          pkgs.statix
 
           # yaml
-          yamllint
+          pkgs.yamllint
 
           # shell
-          shellcheck
-          shfmt
+          pkgs.shellcheck
+          pkgs.shfmt
         ];
       };
     };