fix(nix): fix shell.nix for non flake nix-shell invocation

- relocated shell.nix to nix/shell.nix
- initialized shell.nix at root to correctly invoke the shell with
  `nix-shell` command for non flake
This commit is contained in:
Rexiel Scarlet
2025-11-10 22:15:29 +04:00
parent 8028deb1ed
commit 4ade4e91e6
3 changed files with 33 additions and 32 deletions

View File

@@ -42,7 +42,7 @@
system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
default = pkgs.callPackage ./shell.nix {};
default = pkgs.callPackage ./nix/shell.nix {};
}
);