2022-08-08 04:31:56 +00:00
|
|
|
{
|
|
|
|
description = "personal site";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
flake-parts.inputs.nixpkgs.follows = "nixpkgs";
|
2022-09-06 04:36:55 +00:00
|
|
|
gitignore.url = "github:hercules-ci/gitignore.nix";
|
|
|
|
gitignore.inputs.nixpkgs.follows = "nixpkgs";
|
2022-08-08 04:31:56 +00:00
|
|
|
};
|
|
|
|
|
2022-09-06 04:36:55 +00:00
|
|
|
outputs = { self, flake-parts, gitignore, ... }@inputs:
|
2022-08-08 04:31:56 +00:00
|
|
|
flake-parts.lib.mkFlake { inherit self; } {
|
|
|
|
imports = [ ];
|
|
|
|
systems = inputs.nixpkgs.lib.systems.flakeExposed;
|
2022-08-21 21:46:49 +00:00
|
|
|
perSystem = { config, self', inputs', pkgs, system, ... }:
|
|
|
|
let
|
2022-09-06 04:36:55 +00:00
|
|
|
inherit (gitignore.lib) gitignoreSource;
|
2022-10-11 17:09:21 +00:00
|
|
|
inherit (pkgs.callPackage ./nix { }) fonts optimize-images;
|
2022-08-27 19:08:42 +00:00
|
|
|
inherit (fonts) copyFonts linkFonts;
|
2022-08-21 21:46:49 +00:00
|
|
|
in
|
|
|
|
{
|
2022-08-25 07:32:34 +00:00
|
|
|
packages.default = with pkgs; stdenv.mkDerivation {
|
|
|
|
pname = "personal-site";
|
2022-10-11 17:09:21 +00:00
|
|
|
version = "2022-10-10";
|
2022-09-06 04:36:55 +00:00
|
|
|
src = gitignoreSource ./.;
|
2022-08-25 07:32:34 +00:00
|
|
|
nativeBuildInputs = [ optimize-images zola ];
|
2022-10-11 17:09:21 +00:00
|
|
|
configurePhase = copyFonts;
|
2022-08-25 07:32:34 +00:00
|
|
|
buildPhase = ''
|
2022-08-21 21:46:49 +00:00
|
|
|
optimize-images
|
2022-08-28 01:58:45 +00:00
|
|
|
zola build --drafts
|
2022-10-17 00:50:18 +00:00
|
|
|
# zola's ignored_content setting doesn't work in static/
|
|
|
|
rm -rf public/image/_favicon.svg
|
2022-08-25 07:32:34 +00:00
|
|
|
'';
|
2022-08-27 03:54:29 +00:00
|
|
|
installPhase = ''
|
|
|
|
cp -r public $out
|
|
|
|
'';
|
2022-08-25 07:32:34 +00:00
|
|
|
};
|
2022-08-21 21:46:49 +00:00
|
|
|
devShells.default = with pkgs; mkShell {
|
2022-10-11 17:09:21 +00:00
|
|
|
packages = [ optimize-images zola ];
|
|
|
|
shellHook = linkFonts;
|
2022-08-27 19:08:42 +00:00
|
|
|
};
|
2022-08-08 04:31:56 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|