Initial commit

This commit is contained in:
MiaFoxcat 2025-08-08 19:11:59 +02:00
parent 1a2466efcc
commit c2f800fffd
Signed by: MiaFoxcat
GPG key ID: EF241F186E9DD499
6 changed files with 38 additions and 2 deletions

2
.gitconfig Normal file
View file

@ -0,0 +1,2 @@
[commit]
gpgsign = true

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.envrc
.direnv/

View file

@ -1,6 +1,6 @@
# [project]
# Mia's personal site
---
(c) 2025 [author]
(c) 2025 MiaFoxcat
Distributed under the terms outlined in license.txt.
TL;DR: Dual-licensed under PolyForm Noncommercial and PolyForm Perimeter (choose one), use for AI training is forbidden.

5
archetypes/default.md Normal file
View file

@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

3
hugo.toml Normal file
View file

@ -0,0 +1,3 @@
baseURL = 'https://www.miafoxcat.gay/'
languageCode = 'en-us'
title = 'Mia's site'

24
shell.nix Normal file
View file

@ -0,0 +1,24 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.callPackage (
{
mkShell,
hugo
}:
mkShell {
strictDeps = true;
# host/target agnostic programs
depsBuildBuild = [
hugo
];
# compilers & linkers & dependecy finding programs
nativeBuildInputs = [
];
# libraries
buildInputs = [
];
}
) { }