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