Add direnv and C++ tools for school
This commit is contained in:
parent
e0df2bd04f
commit
302469b62a
4 changed files with 17 additions and 2 deletions
|
@ -23,9 +23,12 @@
|
|||
|
||||
# Programming
|
||||
nixd # NixD LSP for .nix files
|
||||
clang
|
||||
gcc
|
||||
(lib.meta.hiPrio clang)
|
||||
clang-tools
|
||||
cling
|
||||
deno
|
||||
gnumake
|
||||
|
||||
# :3
|
||||
fastfetch
|
||||
|
@ -43,6 +46,7 @@
|
|||
glow # Markdown rendering
|
||||
tealdeer # TLDR
|
||||
usbutils # `lsusb`
|
||||
unzip
|
||||
|
||||
# Process tools
|
||||
btop # Process monitor
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
{
|
||||
imports = [
|
||||
./btop.nix
|
||||
./direnv.nix
|
||||
./konsole.nix
|
||||
./starship.nix
|
||||
./zsh.nix
|
||||
|
|
8
home-manager/modules/shell/direnv.nix
Normal file
8
home-manager/modules/shell/direnv.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
}
|
|
@ -32,6 +32,7 @@
|
|||
# Utilities
|
||||
streetsidesoftware.code-spell-checker # Spellchecking
|
||||
jeanp413.open-remote-ssh # Remote SSH
|
||||
mkhl.direnv # nix-direnv autoloading
|
||||
])
|
||||
++ (with vscode-marketplace; [
|
||||
yy0931.save-as-root # Save as root over SSH
|
||||
|
@ -85,6 +86,7 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
"direnv.restart.automatic" = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue