feat: design improvements

This commit is contained in:
2024-02-29 15:56:03 +01:00
parent 6b1f73d765
commit c83b8ae89c
20 changed files with 197 additions and 188 deletions

23
flake.nix Normal file
View File

@@ -0,0 +1,23 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
packages =
(with pkgs; [
nodejs_18
nodePackages.pnpm
]);
in {
devShell = pkgs.mkShell {
buildInputs = packages;
};
});
}