refactor(nix): devShell inited in shell.nix and information about added in README.md

This commit is contained in:
s0me1newithhand7s
2025-10-19 23:03:47 +03:00
parent 2362dca8b6
commit bfa1d5770d
3 changed files with 43 additions and 0 deletions

View File

@@ -38,6 +38,14 @@
defaultPackage = eachSystem (system: self.packages.${system}.default);
devShells = eachSystem (
system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
default = pkgs.callPackage ./shell.nix {};
}
);
homeModules.default = {
pkgs,
lib,