Added nix package that build site from org mode

This commit is contained in:
Aleksandr Lebedev 2025-10-22 17:59:54 +02:00
parent 631e7c2237
commit 94ab268ab9
6 changed files with 110 additions and 66 deletions

13
flake.nix Normal file
View file

@ -0,0 +1,13 @@
{
description = "A flake to build my website";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {self, ...} @ inputs: let
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
in {
packages.x86_64-linux.website = pkgs.callPackage ./package.nix {};
};
}