mpd: use XDG music directory #270
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
jobs: | |
formatting: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
- name: treefmt | |
run: nix develop --command treefmt --fail-on-change | |
build-nixos-configs: | |
name: Build NixOS configurations | |
needs: | |
- formatting | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: | |
# - akane | |
# - kawashiro | |
# - maya | |
# - mitori | |
- yukari | |
# - yuyuko | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
- name: Build config | |
run: nix run nixpkgs\#nixos-rebuild -- build --flake .\#${{ matrix.config }} | |
build-home-manager-configs: | |
name: Build Home Manager configurations | |
needs: | |
- formatting | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: | |
- dan@akane | |
- generic | |
- dan@hina | |
- dan@kawashiro | |
- dan@maya | |
- minimal | |
- dan@mitori | |
- dan@yukari | |
- dan@yuyuko | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
- name: Build config | |
run: nix develop .\#bootstrap --command home-manager build --flake .\#${{ matrix.config }} |