initial publish

This commit is contained in:
Sean Dugre 2025-11-30 19:29:31 -05:00
parent fe383f9333
commit 158d021613
49 changed files with 1796 additions and 26 deletions

View file

@ -1,7 +1,20 @@
{ pkgs ? import <nixpkgs> {} }:
let
nixpkgs = builtins.fetchTarball "https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz";
pkgs = import nixpkgs { };
hugo-theme = builtins.fetchTarball {
url = "https://github.com/panr/hugo-theme-terminal/archive/refs/tags/v4.2.3.tar.gz";
name = "hugo-theme-terminal";
sha256 = "10n1frbm1qvwyq5gz7hfdz4aapkzbamgpbwk1941ajm5axbb53hm";
};
in
pkgs.mkShellNoCC {
packages = [
pkgs.hugo
pkgs.just
];
shellHook = ''
mkdir -p themes
ln -snf "${hugo-theme}" themes/default
'';
}