Compare commits

...

3 commits

3 changed files with 11 additions and 2 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

View file

@ -30,8 +30,8 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
HUGO_VERSION: 0.108.0 HUGO_VERSION: 0.111.3
NODE_VERSION: 18.12.1 NODE_VERSION: 18.14.2
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3

8
default.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/994e2ef9e9c70b4dd7257f73452a94e871723685.tar.gz") {} }:
pkgs.mkShell {
buildInputs = [
pkgs.hugo
pkgs.nodejs
];
}