Fix flake definition and GitHub workflow

This commit is contained in:
Gabriel Arazas 2022-03-01 18:02:20 +08:00
parent 5af64871ed
commit 20c4f28f62
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -12,6 +12,6 @@
let pkgs = import nixpkgs { inherit system; };
in {
devShell =
import ./nix/shell.nix { inherit pkgs; };
import ./shell.nix { inherit pkgs; };
});
}