Skip to content

Commit

Permalink
add check workflow and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
NotM32 committed Jan 3, 2025
1 parent 7ddef1c commit baa5355
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
branches:
- master
- prod
jobs:
check:
name: Check Flake outputs
permissions:
contents: read
runs-on: ubuntu-latest
outputs:
flake-check-stderr: ${{ steps.flake-check.outputs.OUT }}
steps:
- name: Checkout Repo
id: checkout
uses: actions/checkout@v3
- name: Install Nix
id: install-nix
uses: cachix/install-nix-action@v30
- name: Run Flake Check
id: flake-check
run: nix flake check
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Secrets are managed with sops-nix. The yubikey is involved in this process. I ha

## Deployment

Most machines have been deployed with nixos-anywhere. Some were installed with custom generated ISO images. I am no longer using this workflow. For my business, I have built a netboot derivation that helps to quickly install hosts. This is great if you have a lot of hosts to install. I may make those configuration modules available here in the future. Keep an eye out for an article about this workflow on [website](https://m32.io)
Most machines have been deployed with nixos-anywhere. Some were installed with custom generated ISO images. I am no longer using this workflow. For my business, I have built a netboot derivation that helps to quickly install hosts. This is great if you have a lot of hosts to install. I may make those configuration modules available here in the future. Keep an eye out for an article about this workflow on [my website](https://m32.io)

In general, I build the system closures locally when hacking on this config. That means working with the `nixos-rebuild` development loop. Some features I test with the `nixos-rebuild build-vm` functionality.

Expand Down

0 comments on commit baa5355

Please sign in to comment.