Skip to content

Commit e362347

Browse files
committed
fix: update runtime dependencies to include notify tools on linux so im not screwed on ubuntu
1 parent eb69030 commit e362347

File tree

1 file changed

+27
-23
lines changed

1 file changed

+27
-23
lines changed

flake.nix

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -557,29 +557,33 @@
557557
nodeJs.enable = true;
558558
perl.enable = true;
559559
};
560-
extraBinPath = builtins.attrValues {
561-
inherit (pkgs)
562-
nixfmt
563-
ruff
564-
ripgrep
565-
git
566-
terraform-ls
567-
lua-language-server
568-
clang-tools
569-
myRSetup
570-
nodejs
571-
fd
572-
nil
573-
vscode-langservers-extracted
574-
stylua
575-
imagemagick
576-
shellcheck
577-
shfmt
578-
prettierd
579-
just-lsp
580-
ty
581-
;
582-
};
560+
extraBinPath =
561+
builtins.attrValues {
562+
inherit (pkgs)
563+
nixfmt
564+
ruff
565+
ripgrep
566+
git
567+
terraform-ls
568+
lua-language-server
569+
clang-tools
570+
myRSetup
571+
nodejs
572+
fd
573+
nil
574+
vscode-langservers-extracted
575+
stylua
576+
imagemagick
577+
shellcheck
578+
shfmt
579+
prettierd
580+
just-lsp
581+
ty
582+
;
583+
}
584+
++ pkgs.lib.optionals pkgs.stdenv.isLinux [
585+
pkgs.inotify-tools
586+
];
583587
neovim = inputs.neovim-nightly-overlay.packages.${pkgs.stdenv.system}.default;
584588
extraLuaPackages = ps: [ ps.magick ];
585589
plugins = {

0 commit comments

Comments
 (0)