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

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 = [
];
}
) { }