pin nix-vscode-extensions manually
This commit is contained in:
parent
07c4e3e8b0
commit
1f4c275c98
|
@ -38,7 +38,6 @@
|
||||||
in {
|
in {
|
||||||
agenix = agenix.packages.${config.nixpkgs.hostPlatform.system}.default;
|
agenix = agenix.packages.${config.nixpkgs.hostPlatform.system}.default;
|
||||||
nur = (import sources.nur { inherit pkgs; });
|
nur = (import sources.nur { inherit pkgs; });
|
||||||
vscode-extensions = (import sources.nix-vscode-extensions).extensions.x86_64-linux; # TODO: This should check the host architecture
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -2,16 +2,27 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
inherit (pkgs) fetchFromGitHub;
|
||||||
|
system = "x86_64-linux"; # TODO: This should check the host architecture
|
||||||
|
extensions =
|
||||||
|
(import (fetchFromGitHub {
|
||||||
|
# On a stable channel, do NOT keep this up-to-date! VS Code extensions
|
||||||
|
# have breaking changes more frequently than the NixOS release cadence.
|
||||||
|
owner = "nix-community";
|
||||||
|
repo = "nix-vscode-extensions";
|
||||||
|
rev = "27ce569a199d2da1a8483fe3d69dd41664da3a63";
|
||||||
|
hash = "sha256-yyB4Kh3EFbYP+1JHza/IEeHwABypcYVi6vvWTmad/rY=";
|
||||||
|
})).extensions.${system};
|
||||||
in {
|
in {
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enableExtensionUpdateCheck = false;
|
enableExtensionUpdateCheck = false;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with extensions.open-vsx; [
|
||||||
open-vsx.golang.go
|
golang.go
|
||||||
open-vsx.jdinhlife.gruvbox
|
jdinhlife.gruvbox
|
||||||
open-vsx.jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
open-vsx.ms-python.python
|
ms-python.python
|
||||||
];
|
];
|
||||||
mutableExtensionsDir = false;
|
mutableExtensionsDir = false;
|
||||||
userSettings = {
|
userSettings = {
|
||||||
|
|
|
@ -1,17 +1,5 @@
|
||||||
{
|
{
|
||||||
"pins": {
|
"pins": {
|
||||||
"nix-vscode-extensions": {
|
|
||||||
"type": "Git",
|
|
||||||
"repository": {
|
|
||||||
"type": "GitHub",
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "nix-vscode-extensions"
|
|
||||||
},
|
|
||||||
"branch": "master",
|
|
||||||
"revision": "27ce569a199d2da1a8483fe3d69dd41664da3a63",
|
|
||||||
"url": "https://github.com/nix-community/nix-vscode-extensions/archive/27ce569a199d2da1a8483fe3d69dd41664da3a63.tar.gz",
|
|
||||||
"hash": "1dpykmk4xmpvx9i8awd93h0g1q8ir2pwsisjzc7vc5f43lm7h86b"
|
|
||||||
},
|
|
||||||
"nur": {
|
"nur": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in a new issue