new file:   .aider.chat.history.md
This commit is contained in:
Per Stark
2024-09-18 12:29:27 +02:00
parent 303ddc5811
commit a3a1cdd9e5
43 changed files with 5419 additions and 97 deletions

51
flake.nix Normal file
View File

@@ -0,0 +1,51 @@
{
inputs = {
nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling";
systems.url = "github:nix-systems/default";
devenv.url = "github:cachix/devenv";
devenv.inputs.nixpkgs.follows = "nixpkgs";
};
nixConfig = {
extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
extra-substituters = "https://devenv.cachix.org";
};
outputs = {
self,
nixpkgs,
devenv,
systems,
...
} @ inputs: let
forEachSystem = nixpkgs.lib.genAttrs (import systems);
in {
packages = forEachSystem (system: {
devenv-up = self.devShells.${system}.default.config.procfileScript;
});
devShells =
forEachSystem
(system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
default = devenv.lib.mkShell {
inherit inputs pkgs;
modules = [
{
# https://devenv.sh/reference/options/
enterShell = ''
echo "run devenv up -d to start and monitor services"
'';
languages.rust.enable = true;
services = {
rabbitmq.enable = true;
};
}
];
};
});
};
}