From 08c2a3cdedca83dcd6b133edf62aa26c3423a7b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sun, 8 Jun 2025 12:21:11 +0200 Subject: [PATCH] vanadium: haskell-language-server cache --- nix/configurations/vanadium/home/dev.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/nix/configurations/vanadium/home/dev.nix b/nix/configurations/vanadium/home/dev.nix index 5415df86..34047fcf 100644 --- a/nix/configurations/vanadium/home/dev.nix +++ b/nix/configurations/vanadium/home/dev.nix @@ -16,13 +16,13 @@ pkgs.shellcheck pkgs.lua-language-server - pkgs.stylua # lua - pkgs.nil # nix - pkgs.fish-lsp # fish - pkgs.pyright # python - pkgs.taplo # toml + pkgs.stylua # lua + pkgs.nil # nix + pkgs.fish-lsp # fish + pkgs.pyright # python + pkgs.taplo # toml pkgs.vscode-langservers-extracted # JSON etc - pkgs.yaml-language-server # yaml + pkgs.yaml-language-server # yaml ]; programs.git = { @@ -48,11 +48,16 @@ # ]; # }; - # ghc.nix cache nix = { settings = { - extra-substituters = ["https://ghc-nix.cachix.org"]; - extra-trusted-public-keys = ["ghc-nix.cachix.org-1:ziC/I4BPqeA4VbtOFpFpu6D1t6ymFvRWke/lc2+qjcg="]; + extra-substituters = [ + "https://ghc-nix.cachix.org" + "https://haskell-language-server.cachix.org" + ]; + extra-trusted-public-keys = [ + "ghc-nix.cachix.org-1:ziC/I4BPqeA4VbtOFpFpu6D1t6ymFvRWke/lc2+qjcg=" + "haskell-language-server.cachix.org-1:juFfHrwkOxqIOZShtC4YC1uT1bBcq2RSvC7OMKx0Nz8=" + ]; }; }; }