Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #98

Merged
merged 19 commits into from
Feb 2, 2024
4 changes: 2 additions & 2 deletions .github/workflows/flake_check.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Nix Flake Check
name: Flake Check

on: [pull_request]

jobs:
check:
flake-check:
runs-on: ubuntu-latest

permissions:
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/flake_update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Flake Update

on:
workflow_dispatch:
schedule: #once a week
- cron: '0 0 * * 0'

jobs:
flake-update:
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Nix
uses: cachix/install-nix-action@v23
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Update flake
run: nix flake update

- name: Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Update flake"

2 changes: 0 additions & 2 deletions docs/hypervisor.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,3 @@ The following is a basic configuration that allows for emulating TPM 2.0 (Window
};
};
```


Loading
Loading