mirror of
https://github.com/ParkerTenBroeck/ParkerTenBroeck.github.io.git
synced 2026-06-06 21:14:06 -04:00
updated to zola 0.22, added theme to code blocks
This commit is contained in:
parent
5d0552c531
commit
9356e79e1a
11 changed files with 143 additions and 11 deletions
17
default.nix
17
default.nix
|
|
@ -1,5 +1,18 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
}:
|
||||
|
||||
let
|
||||
unstable =
|
||||
import
|
||||
(fetchTarball {
|
||||
url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
|
||||
sha256 = "sha256:09qwbfkvk3jmqlpgis4v1m1fmh7zffi8drybb03mjqa95bynbs99";
|
||||
})
|
||||
{
|
||||
system = pkgs.stdenv.hostPlatform.system;
|
||||
};
|
||||
in
|
||||
pkgs.mkShell {
|
||||
buildInputs = [ pkgs.zola ];
|
||||
buildInputs = [ unstable.zola ];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue