This commit is contained in:
mjallen18
2025-08-18 20:54:28 -05:00
parent 2623efc997
commit 8a1714eeb6
2 changed files with 52 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
config,
pkgs,
system,
namespace,
...
}:
let
@@ -9,6 +10,7 @@ let
x86_only = with pkgs; [
vscode-extensions.redhat.vscode-xml
];
open-remote-ssh = pkgs.${namespace}.open-remote-ssh;
in
{
programs = {
@@ -39,7 +41,7 @@ in
# open-remote-ssh
# nix-vscode-extensions.open-vsx.jeanp413.open-remote-ssh
# open-vsx.jeanp413.open-remote-ssh
open-remote-ssh
]
++ (if !isArm then x86_only else [ ])
++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
@@ -138,6 +140,8 @@ in
"*.db" = "default";
};
};
"enable-proposed-api" = [ "jeanp413.open-remote-ssh" ];
};
};
};