From b9eeeb99c22beafff6b254499279fd64b5b47224 Mon Sep 17 00:00:00 2001 From: Ifrahim Ansari Date: Sun, 15 Feb 2026 11:54:06 -0500 Subject: [PATCH] updated shell paths --- desktop/configuration.nix | 10 +++++----- shells/js.nix | 10 ++++++++++ 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/desktop/configuration.nix b/desktop/configuration.nix index d4047fd..950aceb 100644 --- a/desktop/configuration.nix +++ b/desktop/configuration.nix @@ -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; diff --git a/shells/js.nix b/shells/js.nix index e69de29..9c8703d 100644 --- a/shells/js.nix +++ b/shells/js.nix @@ -0,0 +1,10 @@ +{ + pkgs ? import { }, +}: + +pkgs.mkShell { + buildInputs = with pkgs; [ + pnpm + typescript-language-server + ]; +}