feat(nvim): dont prompt to cache flake inputs
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-01-23 09:40:28 -05:00
parent 294f6c0bed
commit 33f3d60f1c

View file

@ -8,7 +8,7 @@
...
}: let
inherit (config.vars) neovimIde;
inherit (lib) fileContents optionalAttrs optionals;
inherit (lib) fileContents hasAttr optionalAttrs optionals;
javaSdk = pkgs.temurin-bin-17;
nvim-treesitter-hyprlang = tree-sitter-hyprlang.packages.${pkgs.system}.default;
@ -119,7 +119,12 @@ in {
rootPatterns = ["flake.nix"];
settings = {
nil = {
formatting = {command = ["alejandra"];};
formatting.command = ["alejandra"];
nix = {
maxMemoryMB = 2560;
flake.autoArchive = hasAttr "sops" config;
};
};
};
};