Skip to content

Commit 6091704

Browse files
committed
Fix CI
1 parent 8464768 commit 6091704

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/nix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
needs: nix-matrix
3131
runs-on: ${{ matrix.os }}
3232
strategy:
33+
fail-fast: false
3334
matrix: ${{fromJSON(needs.nix-matrix.outputs.matrix)}}
3435
steps:
3536
- uses: actions/checkout@v4

nixos/exporters.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,13 @@ in {
5858
# Virtualization
5959
vmware = mkImage "vmware" [];
6060
virtualbox = mkImage "virtualbox" [];
61-
proxmox = mkImage "proxmox" [];
61+
proxmox = mkImage "proxmox" [
62+
{
63+
boot.loader.systemd-boot.enable = false;
64+
boot.loader.grub.enable = true;
65+
boot.loader.grub.device = "/dev/sda";
66+
}
67+
];
6268
hyperv = mkImage "hyperv" [];
6369

6470
# Container

0 commit comments

Comments
 (0)