NixOS (nixpkgs unstable) #712
  
    
      This file contains hidden or 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: NixOS (nixpkgs unstable) | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: [ "**.md" ] | |
| pull_request: | |
| branches: [ main ] | |
| paths-ignore: [ "**.md" ] | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v27 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Update flake.lock | |
| run: nix flake update | |
| - name: Build (Wayland) | |
| run: nix build | |
| - name: Build (X11) | |
| run: nix build .#x11 |