1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-24 00:21:47 +03:00

default.nix: directly import devShell.nix

This commit is contained in:
Parthiv Seetharaman 2022-04-05 11:46:02 -07:00
parent b5fac9c7fc
commit bc10b43c99

View File

@ -13,6 +13,6 @@ in
# Pass this flake as inputs.digga # Pass this flake as inputs.digga
defaultNix // { defaultNix // {
inputs = defaultNix.inputs // { digga = defaultNix; }; inputs = defaultNix.inputs // { digga = defaultNix; };
shell = import ./shell.nix; shell = import ./devShell.nix { };
} }