All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 16s
15 lines
311 B
Nix
15 lines
311 B
Nix
{
|
|
description = "Kubernetes-ready NixOS base template";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
|
|
};
|
|
|
|
outputs = { nixpkgs, ... }: {
|
|
nixosConfigurations.template = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ./configuration.nix ];
|
|
};
|
|
};
|
|
}
|