Compare commits
2 commits
882c0723e9
...
6342f2f19f
Author | SHA1 | Date | |
---|---|---|---|
6342f2f19f | |||
4316a26a57 |
2 changed files with 13 additions and 9 deletions
|
@ -3,12 +3,6 @@ jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: https://code.forgejo.org/actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: https://github.com/cachix/install-nix-action@v22
|
- uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
||||||
with:
|
- run: nix flake check
|
||||||
install_url: https://nixos.org/nix/install
|
|
||||||
extra_nix_config: |
|
|
||||||
auto-optimise-store = true
|
|
||||||
access-tokens = ${{ secrets.FORGEJO_TOKEN }}
|
|
||||||
experimental-features = nix-command flakes
|
|
||||||
- run: nix flake check
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
|
@ -47,5 +48,14 @@
|
||||||
"ubuntu-latest:docker://node:18-bullseye"
|
"ubuntu-latest:docker://node:18-bullseye"
|
||||||
#"native:host"
|
#"native:host"
|
||||||
];
|
];
|
||||||
|
hostPackages = with pkgs; [
|
||||||
|
sudo
|
||||||
|
bash
|
||||||
|
curl
|
||||||
|
coreutils
|
||||||
|
wget
|
||||||
|
gitMinimal
|
||||||
|
wget
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue