Skip to content

Commit

Permalink
Merge pull request #98 from erictossell/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
erictossell authored Feb 2, 2024
2 parents b43fd3b + 5edff15 commit a91b87a
Show file tree
Hide file tree
Showing 18 changed files with 380 additions and 125 deletions.
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

0 comments on commit a91b87a

Please sign in to comment.