18
nix/default.nix
Normal file
18
nix/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ ... }: {
|
||||
imports = [
|
||||
./torana.nix
|
||||
./torana-web.nix
|
||||
];
|
||||
|
||||
perSystem = { self', pkgs, ... }: {
|
||||
packages.default = self'.packages.torana;
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
name = "torana-dev";
|
||||
inputsFrom = with self'.devShells; [
|
||||
torana
|
||||
torana-web
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user