From 20c4f28f62ea42b050931ab51159652000c6af5c Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 1 Mar 2022 18:02:20 +0800 Subject: [PATCH] Fix flake definition and GitHub workflow --- .github/workflows/gh-pages.yml | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 2e802eb..2675691 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -7,7 +7,7 @@ on: jobs: deploy: - runs-on: latest-ubuntu + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: cachix/install-nix-action@v16 diff --git a/flake.nix b/flake.nix index 687232d..f712044 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,6 @@ let pkgs = import nixpkgs { inherit system; }; in { devShell = - import ./nix/shell.nix { inherit pkgs; }; + import ./shell.nix { inherit pkgs; }; }); }