feat(vscodium): bump and add markdown-oxide extensions
This commit is contained in:
parent
b85be7893a
commit
439a818439
3 changed files with 28 additions and 11 deletions
|
@ -34,6 +34,11 @@ in {
|
||||||
../programs/libreoffice.nix
|
../programs/libreoffice.nix
|
||||||
../programs/neovim.nix
|
../programs/neovim.nix
|
||||||
../programs/vscode
|
../programs/vscode
|
||||||
|
{
|
||||||
|
home.packages = [
|
||||||
|
pkgsUnstable.markdown-oxide
|
||||||
|
];
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables.HM_CONFIG = "graphical-fullblown";
|
home.sessionVariables.HM_CONFIG = "graphical-fullblown";
|
||||||
|
|
|
@ -32,8 +32,8 @@ in {
|
||||||
|
|
||||||
(pkgsVscodium.openvscode-server.overrideAttrs (attrs: {
|
(pkgsVscodium.openvscode-server.overrideAttrs (attrs: {
|
||||||
src = repoFlake.inputs.openvscode-server;
|
src = repoFlake.inputs.openvscode-server;
|
||||||
version = "1.88.1";
|
version = "1.94.2";
|
||||||
yarnCache = attrs.yarnCache.overrideAttrs (_: {outputHash = "sha256-89c6GYLT2RzHqwxBKegYqB6g5rEJ6/nH53cnfV7b0Ts=";});
|
yarnCache = attrs.yarnCache.overrideAttrs (_: {outputHash = "sha256-89c6GYLT2RzHqwxBKegYqB6g5rEJ6/nH53cnfV7b0Tt=";});
|
||||||
}))
|
}))
|
||||||
|
|
||||||
pkgs.waypipe
|
pkgs.waypipe
|
||||||
|
|
|
@ -46,18 +46,30 @@ in {
|
||||||
]
|
]
|
||||||
++ (let
|
++ (let
|
||||||
extensions = repoFlake.inputs.nix-vscode-extensions.extensions.${pkgs.system};
|
extensions = repoFlake.inputs.nix-vscode-extensions.extensions.${pkgs.system};
|
||||||
in (with extensions.vscode-marketplace; [
|
in (
|
||||||
tamasfe.even-better-toml
|
with extensions.vscode-marketplace;
|
||||||
|
with extensions.vscode-marketplace-release; [
|
||||||
|
tamasfe.even-better-toml
|
||||||
|
|
||||||
serayuzgur.crates
|
serayuzgur.crates
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
swellaby.vscode-rust-test-adapter
|
swellaby.vscode-rust-test-adapter
|
||||||
|
|
||||||
golang.go
|
golang.go
|
||||||
jeff-hykin.better-go-syntax
|
jeff-hykin.better-go-syntax
|
||||||
|
|
||||||
ibecker.treefmt-vscode
|
ibecker.treefmt-vscode
|
||||||
])));
|
]
|
||||||
|
)))
|
||||||
|
++ [
|
||||||
|
(pkgsVscodium.vscode-utils.extensionFromVscodeMarketplace
|
||||||
|
{
|
||||||
|
name = "markdown-oxide";
|
||||||
|
publisher = "felixzeller";
|
||||||
|
version = "1.1.0";
|
||||||
|
sha256 = "07l37hkg106m3nl9530l7i39iw1kibckv1zi4n23gbp7srdrwbs3";
|
||||||
|
})
|
||||||
|
];
|
||||||
mutableExtensionsDir = true;
|
mutableExtensionsDir = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue