Files
vkane.cz/flake.nix
Vojtěch Káně 9498944f53 Inline the submodule of themes/hermit with a git-subtree
Add 'themes/hermit/' from commit '56843f347a642324970ba30d58f23c64e037bb7c'

git-subtree-dir: themes/hermit
git-subtree-mainline: 7844fa5501c271b1b2b5ece2cb19f3202cd6e5ad
git-subtree-split: 56843f347a
2026-02-21 23:42:08 +01:00

24 lines
531 B
Nix

{
description = "vkane.cz";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs, }:
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
{
website = pkgs.stdenv.mkDerivation {
pname = "vkane.cz";
version = "";
src = self;
buildPhase = ''
'${pkgs.hugo}'/bin/hugo --buildExpired --buildFuture --destination "$out" --minify --printPathWarnings --printI18nWarnings
'';
dontInstall = true;
};
};
}