nix fmt
This commit is contained in:
parent
3893afa8b4
commit
3effecf0ce
2 changed files with 23 additions and 17 deletions
|
@ -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
|
||||
'';
|
||||
}
|
||||
|
||||
|
|
11
flake.nix
11
flake.nix
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue