Populates the project with the blog template

This commit is contained in:
2025-06-03 11:08:59 -07:00
parent e136eb8381
commit 0c4a8a1ddf
35 changed files with 6895 additions and 0 deletions

52
flake.nix Normal file
View File

@@ -0,0 +1,52 @@
# This flake was initially generated by fh, the CLI for FlakeHub (version 0.1.24)
{
# A helpful description of your flake
description = "Terakoda.com homepage";
# Flake inputs
inputs = {
flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*";
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-25.05";
};
# Flake outputs that other flakes can use
outputs =
{
self,
flake-schemas,
nixpkgs,
}:
let
# Helpers for producing system-specific outputs
supportedSystems = [ "x86_64-linux" ];
forEachSupportedSystem =
f:
nixpkgs.lib.genAttrs supportedSystems (
system:
f {
pkgs = import nixpkgs { inherit system; };
}
);
in
{
# Schemas tell Nix about the structure of your flake's outputs
schemas = flake-schemas.schemas;
# Development environments
devShells = forEachSupportedSystem (
{ pkgs }:
{
default = pkgs.mkShell {
# Pinned packages available in the environment
packages = with pkgs; [
nodejs_22
eslint
git
nixpkgs-fmt
];
};
}
);
};
}