updated shell paths

This commit is contained in:
Ifrahim Ansari 2026-02-15 11:54:06 -05:00
parent 5e09d5e5a6
commit b9eeeb99c2
2 changed files with 15 additions and 5 deletions

View file

@ -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;

View file

@ -0,0 +1,10 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
pnpm
typescript-language-server
];
}