CI/Nix: separate xdph from hl

This commit is contained in:
Mihai Fufezan 2025-06-26 21:16:03 +03:00
parent 3d6476c902
commit 2796ec1cf2
3 changed files with 39 additions and 60 deletions

25
.github/workflows/nix.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Build
on:
workflow_call:
inputs:
command:
required: true
type: string
description: Command to run
secrets:
CACHIX_AUTH_TOKEN:
required: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v15
with:
name: hyprland
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: ${{ inputs.command }}