Skip to content

Commit

Permalink
enabled direnv and added VSCode extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricMeu committed Feb 13, 2024
1 parent 1b23084 commit 102ce45
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
1 change: 0 additions & 1 deletion .envrc

This file was deleted.

6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions home/shell.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
{ pkgs, ... }: {
programs = {
direnv =
{
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};

zoxide =
{
enable = true;
Expand Down
14 changes: 11 additions & 3 deletions home/vscode.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@
programs.vscode = {
enable = true;

enableUpdateCheck = false;

enableExtensionUpdateCheck = false;

extensions =
with pkgs; [
vscode-extensions.catppuccin.catppuccin-vsc
vscode-extensions.catppuccin.catppuccin-vsc-icons
with pkgs.vscode-extensions; [
catppuccin.catppuccin-vsc
catppuccin.catppuccin-vsc-icons
mkhl.direnv

ms-python.python
ms-toolsai.jupyter
];

userSettings =
Expand Down

0 comments on commit 102ce45

Please sign in to comment.