mat.services/flake.nix

57 lines
1.8 KiB
Nix
Raw Normal View History

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-08-27 18:27:41 +00:00
# theme - inlined now, not used
2022-08-08 04:31:56 +00:00
apollo.url = "github:not-matthias/apollo";
apollo.flake = false;
};
outputs = { self, flake-parts, ... }@inputs:
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-08-28 18:28:27 +00:00
# TODO: move these to a flake-module
inherit (pkgs.callPackage ./nix { }) container deploy fonts optimize-images themes;
2022-08-27 19:08:42 +00:00
inherit (fonts) copyFonts linkFonts;
inherit (themes {
2022-08-27 18:42:04 +00:00
theme = inputs.apollo;
themeEnabled = false;
}) copyTheme linkTheme;
2022-08-21 21:46:49 +00:00
in
{
packages.default = with pkgs; stdenv.mkDerivation {
pname = "personal-site";
version = "2022-08-27";
src = ./.;
nativeBuildInputs = [ optimize-images zola ];
2022-08-27 18:42:04 +00:00
configurePhase = copyTheme + copyFonts;
buildPhase = ''
2022-08-21 21:46:49 +00:00
optimize-images
zola build --drafts
'';
installPhase = ''
cp -r public $out
'';
};
2022-08-21 21:46:49 +00:00
devShells.default = with pkgs; mkShell {
packages = [ flyctl optimize-images zola ];
2022-08-27 18:42:04 +00:00
shellHook = linkTheme + linkFonts;
};
packages.container = container {
2022-08-27 19:08:42 +00:00
caddyfile = builtins.readFile ./Caddyfile;
site = config.packages.default;
2022-08-27 19:08:42 +00:00
};
apps.deploy.program =
let deploy' = deploy { dockerImage = config.packages.container; };
2022-08-27 19:08:42 +00:00
in "${deploy'}/bin/deploy";
2022-08-08 04:31:56 +00:00
};
};
}