Install VS Code via Nix

This commit is contained in:
Gene Liverman 2023-09-12 15:30:06 -04:00
parent 645524c898
commit dc9a8d6ca8
3 changed files with 7 additions and 2 deletions

View file

@ -43,7 +43,10 @@
# This is only set to work with x86 macOS right now... that will need to be updated
darwinConfigurations.Blue-Rock = nix-darwin.lib.darwinSystem {
system = "x86_64-darwin";
pkgs = import nixpkgs { system = "x86_64-darwin"; };
pkgs = import nixpkgs {
system = "x86_64-darwin";
config.allowUnfree = true;
};
modules = [
nix-homebrew.darwinModules.nix-homebrew
{

View file

@ -85,7 +85,6 @@
"thunderbird"
"vagrant"
"virtualbox"
"visual-studio-code"
"vivaldi"
"vlc"
"whatsapp"

View file

@ -95,6 +95,9 @@
let g:airline_powerline_fonts = 1
'';
};
vscode = {
enable = true;
};
zsh = {
enable = true;
enableCompletion = true;