feat(vscodium remote): attempt to match versions on client and server environments
This commit is contained in:
parent
092e69133f
commit
b144c4501f
6 changed files with 67 additions and 5 deletions
|
@ -1,11 +1,14 @@
|
|||
{
|
||||
pkgs,
|
||||
nodeFlake,
|
||||
repoFlake,
|
||||
...
|
||||
}: {
|
||||
}: let
|
||||
pkgsVscodium = import repoFlake.inputs.nixpkgs-vscodium {inherit (pkgs) system config;};
|
||||
in {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
package = pkgsVscodium.vscodium;
|
||||
extensions =
|
||||
[
|
||||
# TODO: how can i install (this) vsix(s) directly?
|
||||
|
@ -38,7 +41,11 @@
|
|||
mutableExtensionsDir = true;
|
||||
};
|
||||
|
||||
home.packages = [pkgs.nixpkgs-fmt pkgs.alejandra];
|
||||
home.packages = [
|
||||
pkgs.nixpkgs-fmt
|
||||
pkgs.alejandra
|
||||
pkgs.nil
|
||||
];
|
||||
}
|
||||
# TODO: automate
|
||||
### original list:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue