"Go back to normal vscode"
This commit is contained in:
parent
bef7376582
commit
295db51428
|
@ -29,4 +29,6 @@
|
|||
nixpkgs.overlays = [
|
||||
(import "${builtins.fetchTarball { url="https://github.com/vlaci/openconnect-sso/archive/master.tar.gz"; sha256="sha256:04kwar7cxz7399bwlka6raqwq5jd27khkjdxk11k08846bkjckx5"; } }/overlay.nix")
|
||||
];
|
||||
|
||||
boot.supportedFilesystems = [ "ntfs" ];
|
||||
}
|
||||
|
|
|
@ -32,7 +32,8 @@
|
|||
|
||||
../emulators.nix
|
||||
|
||||
../vscode-fhs.nix
|
||||
../vscode.nix
|
||||
# ../vscode-fhs.nix
|
||||
];
|
||||
|
||||
# Add open-in-vscode button to nemo
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscode-fhsWithPackages (ps: with ps; [ rustup zlib openssl.dev pkg-config platformio python39 ]);
|
||||
package = pkgs.vscode.fhsWithPackages (ps: with ps; [ rustup zlib openssl.dev pkg-config platformio python39 ]);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
# package = pkgs.vscode-fhs;
|
||||
package = pkgs.vscode-fhsWithPackages (ps: with ps; [ rustup zlib openssl.dev pkg-config ]);
|
||||
package = pkgs.vscode;
|
||||
# package = pkgs.vscode-fhsWithPackages (ps: with ps; [ rustup zlib openssl.dev pkg-config ]);
|
||||
# userSettings = {
|
||||
# "workbench.colorTheme" = "Material Theme Ocean High Contrast";
|
||||
# "tabnine.experimentalAutoImports" = "true";
|
|
@ -7,6 +7,12 @@
|
|||
fsType = "btrfs";
|
||||
};
|
||||
|
||||
fileSystems."/mnt/windows_disk" = {
|
||||
device = "/dev/disk/by-uuid/3402E4B102E4796E";
|
||||
fsType = "ntfs3";
|
||||
options = [ "rw" "uid=1000"];
|
||||
};
|
||||
|
||||
# Other modules
|
||||
imports = [
|
||||
../hardware-configuration.nix
|
||||
|
|
Loading…
Reference in New Issue