Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I1b5f90bbb210262a9287a9b8eac02e9d6a6a6964
19 lines
468 B
Nix
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;
|
|
})
|
|
];
|
|
};
|
|
};
|
|
}
|