nixir/tests/integration/flake_ref/flake.nix
NotAShelf 531855d91a
tests: cover flake refs and lexer/parser regressions
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I1b5f90bbb210262a9287a9b8eac02e9d6a6a6964
2026-04-24 23:13:24 +03:00

19 lines
468 B
Nix

{
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;
})
];
};
};
}