tests: cover flake refs and lexer/parser regressions

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I1b5f90bbb210262a9287a9b8eac02e9d6a6a6964
This commit is contained in:
raf 2026-04-24 18:35:20 +03:00
commit 531855d91a
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
4 changed files with 171 additions and 2 deletions

View file

@ -0,0 +1,19 @@
{
description = "Local flake fixture for nixir integration tests";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
outputs = { self, nixpkgs }: {
value = 42;
nixosConfigurations.demo = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
({ ... }: {
networking.hostName = "nixir-demo";
system.stateVersion = "24.11";
services.openssh.enable = true;
})
];
};
};
}