"Go back to normal vscode"

This commit is contained in:
SeanOMik 2023-03-09 12:37:12 -05:00
parent bef7376582
commit 295db51428
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
5 changed files with 13 additions and 4 deletions

View File

@ -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" ];
}

View File

@ -32,7 +32,8 @@
../emulators.nix
../vscode-fhs.nix
../vscode.nix
# ../vscode-fhs.nix
];
# Add open-in-vscode button to nemo

View File

@ -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 ]);
};
}

View File

@ -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";

View File

@ -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