From 00e37dc840f7dd9b4ec8d2aa7c17bebad08a2696 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Thu, 1 May 2025 21:46:32 +0200 Subject: feat(frontend): more styling --- flake.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..c508abe --- /dev/null +++ b/flake.nix @@ -0,0 +1,30 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { + self, + nixpkgs, + flake-utils, + ... + }: + flake-utils.lib.eachDefaultSystem (system: let + overlays = []; + pkgs = import nixpkgs {inherit system overlays;}; + deps = [ + pkgs.jdk8 + pkgs.jdk21 + pkgs.nodejs_22 + pkgs.nodePackages.pnpm + + ]; + in + with pkgs; { + devShells.default = mkShell { + buildInputs = deps; + }; + formatter = alejandra; + }); +} \ No newline at end of file -- cgit