Skip to content

Commit

Permalink
Add more actions
Browse files Browse the repository at this point in the history
  • Loading branch information
storvik committed Dec 10, 2023
1 parent faaf0ba commit 6169db5
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
nix_conf: experimental-features = nix-command flakes
- name: nix flake check
run: |
nix flake check
nix flake check --no-build
13 changes: 13 additions & 0 deletions .github/workflows/kalinix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: kalinix
on: [push, pull_request]
jobs:
build-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v26
with:
nix_conf: experimental-features = nix-command flakes
- name: build
run: |
nix build .#nixosConfigurations.kalinix.config.system.build.toplevel
13 changes: 13 additions & 0 deletions .github/workflows/retronix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: retronix
on: [push, pull_request]
jobs:
build-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v26
with:
nix_conf: experimental-features = nix-command flakes
- name: build
run: |
nix build .#nixosConfigurations.retronix.config.system.build.toplevel
13 changes: 13 additions & 0 deletions .github/workflows/storvik-live.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: storvik-live
on: [push, pull_request]
jobs:
build-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v26
with:
nix_conf: experimental-features = nix-command flakes
- name: build
run: |
nix build .#nixosConfigurations.storvik-live.config.system.build.toplevel
13 changes: 13 additions & 0 deletions .github/workflows/storvik-nixos-matebook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: storvik-nixos-matebook
on: [push, pull_request]
jobs:
build-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v26
with:
nix_conf: experimental-features = nix-command flakes
- name: build
run: |
nix build .#nixosConfigurations.storvik-nixos-matebook.config.system.build.toplevel
13 changes: 13 additions & 0 deletions .github/workflows/storvik-nixos-nuc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: storvik-nixos-nuc
on: [push, pull_request]
jobs:
build-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v26
with:
nix_conf: experimental-features = nix-command flakes
- name: build
run: |
nix build .#nixosConfigurations.storvik-nixos-nuc.config.system.build.toplevel
2 changes: 1 addition & 1 deletion .github/workflows/storvik-nixos-wsl.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: storvik-nixos-wsl
on: [push, pull_request]
jobs:
gotest:
build-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@ My NixOS configuration using nix flakes.

## Hosts

| Host | Build status |
|-------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
| storvik-nixos-wsl | [![build](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-wsl.yml/badge.svg)](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-wsl.yml) |
| Host | Description | Features |
|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|--------------------------------------------------------|---------------------|
| [![build](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-wsl.yml/badge.svg)](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-wsl.yml) | NixOS config used on Windows Subsystem for Linux | |
| [![build](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-matebook.yml/badge.svg)](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-matebook.yml) | Config used on Huawei Matebook, my main Linux computer | hyprland emacs foot |
| [![build](https://github.com/storvik/nix-config/actions/workflows/retronix.yml/badge.svg)](https://github.com/storvik/nix-config/actions/workflows/retronix.yml) | Retro gaming computer using RetroArch | gnome retroarch |
| [![build](https://github.com/storvik/nix-config/actions/workflows/kalinix.yml/badge.svg)](https://github.com/storvik/nix-config/actions/workflows/kalinix.yml) | Laptop set up with various forensics tooling | hyprland forensics |
| [![build](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-nuc.yml/badge.svg)](https://github.com/storvik/nix-config/actions/workflows/storvik-nixos-nuc.yml) | NUC used as home server for backup etc | |
| [![build](https://github.com/storvik/nix-config/actions/workflows/storvik-live.yml/badge.svg)](https://github.com/storvik/nix-config/actions/workflows/storvik-live.yml) | Live USB with my config | |

## Structure

Expand Down

0 comments on commit 6169db5

Please sign in to comment.