generated from MiaFoxcat/Polyform-perimeter-nc-noai
Initial commit
This commit is contained in:
parent
1a2466efcc
commit
c2f800fffd
6 changed files with 38 additions and 2 deletions
2
.gitconfig
Normal file
2
.gitconfig
Normal file
|
@ -0,0 +1,2 @@
|
|||
[commit]
|
||||
gpgsign = true
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.envrc
|
||||
.direnv/
|
|
@ -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
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
+++
|
||||
date = '{{ .Date }}'
|
||||
draft = true
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
+++
|
3
hugo.toml
Normal file
3
hugo.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
baseURL = 'https://www.miafoxcat.gay/'
|
||||
languageCode = 'en-us'
|
||||
title = 'Mia's site'
|
24
shell.nix
Normal file
24
shell.nix
Normal 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 = [
|
||||
|
||||
];
|
||||
}
|
||||
) { }
|
Loading…
Add table
Add a link
Reference in a new issue