blob: 1a27ed382a50264cd6af4a31bc21af2f245a647b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
default:
image: nixos/nix:2.6.0
before_script:
- mkdir -p ~/.config/nix/
- echo "experimental-features = flakes nix-command" >> ~/.config/nix/nix.conf
- echo "accept-flake-config = true" >> ~/.config/nix/nix.conf
- echo "extra-system-features = kvm" >> ~/.config/nix/nix.conf
check:
only:
- branches
- tags
- merge_requests
script:
- nix flake check
|