WIP hot reloading enabled, much progress

This commit is contained in:
2024-09-07 14:42:32 -06:00
commit 976c3d0679
17 changed files with 1342 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
description = "Simple dart flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
flake-utils,
nixpkgs,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
dart
];
# shellHook = ''
# export FLUTTER_ROOT
# '';
};
});
}