mirror of
https://git.adityakumar.xyz/adityakumar.xyz.git
synced 2024-11-09 18:49:45 +00:00
21 lines
513 B
Nix
21 lines
513 B
Nix
|
{
|
||
|
description = "A flake for publishing blog posts to https://blog.adityakumar.xyz/";
|
||
|
|
||
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/23.05";
|
||
|
|
||
|
outputs = { self, nixpkgs }: {
|
||
|
packages.x86_64-linux.default = with import nixpkgs { system = "x86_64-linux"; };
|
||
|
stdenv.mkDerivation {
|
||
|
name = "blog";
|
||
|
buildInputs = [
|
||
|
pkgs.hugo
|
||
|
pkgs.rsync
|
||
|
pkgs.nodejs
|
||
|
];
|
||
|
src = self;
|
||
|
buildPhase = "hugo server";
|
||
|
installPhase = "./deploy.sh";
|
||
|
};
|
||
|
};
|
||
|
}
|