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 + ]; +}