feat(modules): switch mkEnableOption
to mkBoolOpt
#43
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
# From: https://github.com/fufexan/dotfiles/blob/main/.github/workflows/check.yml | |
name: Check | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
checks: | |
name: Check expressions | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v18 | |
with: | |
install_url: https://nixos.org/nix/install | |
extra_nix_config: | | |
auto-optimise-store = true | |
experimental-features = nix-command flakes | |
- run: nix flake check |