updated shell paths
This commit is contained in:
parent
5e09d5e5a6
commit
b9eeeb99c2
2 changed files with 15 additions and 5 deletions
|
|
@ -10,11 +10,11 @@
|
|||
|
||||
environment.shellAliases = {
|
||||
rebuild = "sudo nixos-rebuild switch --flake ~/NixOS/.#nvidia";
|
||||
c = "nix-shell ~/nixos/shells/c.nix";
|
||||
js = "nix-shell ~/nixos/shells/js.nix";
|
||||
nix = "nix-shell ~/nixos/shells/nix.nix";
|
||||
rust = "nix-shell ~/nixos/shells/rust.nix";
|
||||
python = "nix-shell ~/nixos/shells/python.nix";
|
||||
c = "nix-shell ~/NixOS/shells/c.nix";
|
||||
js = "nix-shell ~/NixOS/shells/js.nix";
|
||||
nix = "nix-shell ~/NixOS/shells/nix.nix";
|
||||
rust = "nix-shell ~/NixOS/shells/rust.nix";
|
||||
python = "nix-shell ~/NixOS/shells/python.nix";
|
||||
};
|
||||
|
||||
programs.steam.enable = true;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
}:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
pnpm
|
||||
typescript-language-server
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue