instala arduino, gsb, actualiza condfig de codeium
This commit is contained in:
parent
d508830456
commit
96a4bfa28a
|
@ -99,6 +99,22 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
userSettings = import ./codium.nix;
|
userSettings = import ./codium.nix;
|
||||||
|
haskell = {
|
||||||
|
enable = true;
|
||||||
|
hie.enable = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
mutableExtensionsDir = false;
|
||||||
|
extensions = (with pkgs.vscode-extensions; [
|
||||||
|
bbenoist.nix
|
||||||
|
# justusadam.language-haskell
|
||||||
|
ms-toolsai.jupyter
|
||||||
|
ms-vscode.cpptools
|
||||||
|
]) ++ (with pkgs.local.vscode-extensions; [
|
||||||
|
laurenttreguier.vscode-simple-icons
|
||||||
|
rust-lang.rust
|
||||||
|
sirtori.indenticator
|
||||||
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
pkgs: with pkgs; [
|
pkgs: with pkgs; [
|
||||||
arandr
|
arandr
|
||||||
|
arduino
|
||||||
betterdiscordctl
|
betterdiscordctl
|
||||||
calc
|
calc
|
||||||
cargo-edit
|
cargo-edit
|
||||||
|
@ -8,6 +9,7 @@ pkgs: with pkgs; [
|
||||||
file
|
file
|
||||||
firefox
|
firefox
|
||||||
gcc
|
gcc
|
||||||
|
gdb
|
||||||
gnumake
|
gnumake
|
||||||
gruvbox-dark-icons-gtk
|
gruvbox-dark-icons-gtk
|
||||||
helix
|
helix
|
||||||
|
|
|
@ -80,6 +80,7 @@
|
||||||
alias nightmode="${redshift}/bin/redshift -P -O 1000"
|
alias nightmode="${redshift}/bin/redshift -P -O 1000"
|
||||||
alias lightmode="${redshift}/bin/redshift -P -O 6500"
|
alias lightmode="${redshift}/bin/redshift -P -O 6500"
|
||||||
alias inbox="echo >> $HOME/gtd/inbox"
|
alias inbox="echo >> $HOME/gtd/inbox"
|
||||||
|
alias nixoide="nix repl '<nixpkgs>'"
|
||||||
bindkey -e
|
bindkey -e
|
||||||
bindkey ";5D" backward-word
|
bindkey ";5D" backward-word
|
||||||
bindkey ";5C" forward-word
|
bindkey ";5C" forward-word
|
||||||
|
|
|
@ -29,4 +29,6 @@ in {
|
||||||
root = ../shenvs;
|
root = ../shenvs;
|
||||||
exclude = [ "config" ];
|
exclude = [ "config" ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
vscode-extensions = pkgs.callPackage ./vscode.nix {};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue