🚀 Staging environment, Nix shell, Biome formatter, update dependencies
All checks were successful
Build and deploy website / build (push) Successful in 56s

This commit is contained in:
2025-07-01 19:08:34 +02:00
parent 1fa2667deb
commit 3a1592db3e
30 changed files with 1674 additions and 1921 deletions

37
flake.nix Normal file
View File

@ -0,0 +1,37 @@
{
description = "martials.no Development environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
};
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
in
{
devShells.${system}.default =
let
pkgs = import nixpkgs {
inherit system;
};
in
pkgs.mkShell {
packages = with pkgs; [
git
] ++ [
# Node
nodejs_22
pnpm
] ++ [
nodePackages.prettier
biome
];
shellHook = ''
pnpm install
fish
'';
};
};
}