Babies are free

This commit is contained in:
Nate Anderson
2025-01-29 17:50:44 -07:00
commit b99560e34b
35 changed files with 2533 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
description = "Simple flutter and 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; [
flutter
dart
];
enterShell = ''
echo "Welcome to Bab.ai development environment"
'';
shellHook = ''
export PATH="$PATH":"$HOME/.pub-cache/bin"
'';
};
});
}