poking at dev

This commit is contained in:
alisceon 2025-07-24 10:48:56 +02:00
parent d842d2a230
commit 715835d743
8 changed files with 239 additions and 8 deletions

27
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,27 @@
stages:
- check
- eval
variables:
NIX_CONFIG: "experimental-features = nix-command flakes"
.default_nix:
image: nixos/nix
before_script:
- nix --version
- nix flake show
- echo "Using host: $(hostname)"
flake-check:
stage: check
extends: .default_nix
script:
- nix flake check --all-systems
flake-eval:
stage: eval
extends: .default_nix
script:
- nix flake show
- nix eval .#nixosConfigurations.tower.config.system.build.toplevel.outPath
- nix eval .#nixosConfigurations.electra.config.system.build.toplevel.outPath