This commit is contained in:
Fabian Montero 2025-08-26 00:34:31 -06:00
parent 3893afa8b4
commit 3effecf0ce
2 changed files with 23 additions and 17 deletions

View file

@ -1,6 +1,10 @@
{ stdenv, zola, lib, ... }:
{
stdenv,
zola,
lib,
...
}:
with lib;
stdenv.mkDerivation {
pname = "posixlycorrect.com";
version = "0.0.1";
@ -11,4 +15,3 @@ stdenv.mkDerivation {
${getExe zola} build --output-dir $out
'';
}

View file

@ -3,11 +3,14 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
in
{
in {
formatter = pkgs.alejandra;
packages = rec {