Skip to content

Commit

Permalink
Install VS Code via Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
genebean committed Sep 12, 2023
1 parent 645524c commit dc9a8d6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
1 change: 0 additions & 1 deletion modules/darwin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@
"thunderbird"
"vagrant"
"virtualbox"
"visual-studio-code"
"vivaldi"
"vlc"
"whatsapp"
Expand Down
3 changes: 3 additions & 0 deletions modules/home-manager/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@
let g:airline_powerline_fonts = 1
'';
};
vscode = {
enable = true;
};
zsh = {
enable = true;
enableCompletion = true;
Expand Down

0 comments on commit dc9a8d6

Please sign in to comment.