diff --git a/home.nix b/home.nix index da2eac4..61803e7 100644 --- a/home.nix +++ b/home.nix @@ -61,6 +61,7 @@ let rider = import ./rider/rider.nix { inherit pkgs; username = username; }; in }; "git.path" = "${pkgs.git}/bin/git"; "update.mode" = "none"; + "docker.dockerPath" = "${pkgs.docker}/bin/docker"; }; }; diff --git a/vscode-extensions.nix b/vscode-extensions.nix index 9a19a46..76be958 100644 --- a/vscode-extensions.nix +++ b/vscode-extensions.nix @@ -5,13 +5,18 @@ with pkgs.vscode-extensions; [ haskell.haskell yzhang.markdown-all-in-one james-yu.latex-workshop - ms-azuretools.vscode-docker vscodevim.vim # Doesn't work with vscodium, and unfree # ms-vscode-remote.remote-ssh # Not supported on Darwin, apparently # ms-dotnettools.csharp ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [ +{ + name = "vscode-docker"; + publisher = "ms-azuretools"; + version = "1.14.0"; + sha256 = "0wc0k3hf9yfjcx7cw9vm528v5f4bk968bgc98h8fwmlx14vhapzp"; +} { name = "code-gnu-global"; publisher = "austin";