Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am nocoolnametom on github.
* I am nocoolnametom (https://keybase.io/nocoolnametom) on keybase.
* I have a public key whose fingerprint is 656F 95AE 0848 1EF2 54B6 9017 980C 909F C478 7796
To claim this, I am signing this object:

Installing on Linode

There are now official docs, so follow those as they'll be up-to-date and easier to follow.

Click here to view the old directions

Installing on Linode

with import <nixpkgs> {};
with lib;
stdenv.mkDerivation (rec {
version = "1.0.0";
name = "ghost_blog-${version}";
src = fetchFromGitHub {
owner = "nocoolnametom";
repo = "nocoolnametom-local-ghost";
{ pkgs ? import <nixpkgs> {} }: with pkgs;
stdenv.mkDerivation {
name = "frontend";
src = ../.;
buildInputs = [ elmPackages.elm nodejs nodePackages.yarn ];
HOME=".";