Publish first post

This commit is contained in:
arne 2022-02-24 15:00:35 +01:00
commit 3ed4da03d2
3 changed files with 44 additions and 52 deletions

View file

@ -1,6 +1,8 @@
{
description = "arnes.space dev and build environment";
inputs.nixpkgs.url = github:NixOS/nixpkgs;
inputs = {
nixpkgs.url = github:NixOS/nixpkgs;
};
outputs = { self, nixpkgs }:
let
@ -17,19 +19,5 @@
devShell.${system} = pkgs.mkShell {
inherit buildInputs;
};
# defaultPackage.${system} = pkgs.stdenv.mkDerivation {
# name = "arnes.space";
# src = ./.;
# inherit buildInputs;
# buildPhase = ''
# ${pkgs.nodePackages.pnpm}/bin/pnpm install
# ${pkgs.nodePackages.pnpm}/bin/pnpm build
# '';
# installPhase = ''
# mkdir $out
# cp -r _site/* $out
# '';
# };
};
}