tests: cover flake refs and lexer/parser regressions
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I1b5f90bbb210262a9287a9b8eac02e9d6a6a6964
This commit is contained in:
parent
b319ef6f3f
commit
531855d91a
4 changed files with 171 additions and 2 deletions
19
tests/integration/flake_ref/flake.nix
Normal file
19
tests/integration/flake_ref/flake.nix
Normal 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;
|
||||
})
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue