mat.services/flake.nix

55 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
inherit (pkgs) callPackage;
optimize-images = callPackage ./nix/optimize-images.nix { };
inherit (callPackage ./nix/fonts.nix { }) copyFonts linkFonts;
2022-08-27 18:42:04 +00:00
inherit (callPackage ./nix/theme.nix {
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-21";
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
'';
installPhase = ''
cp -r public $out
cp Caddyfile $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.docker = callPackage ./nix/docker.nix { site = self'.packages.default; };
apps.deploy.program =
let deploy = callPackage ./nix/deploy.nix { dockerImg = self'.packages.docker; };
in "${deploy}/bin/deploy";
2022-08-08 04:31:56 +00:00
};
};
}