Files
TerraHome/nixos/template-base/flake.nix
MichaelFisher1997 3bdf3f8d84
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 16s
feat: convert template-base into k8s-ready VM template
2026-03-01 01:24:45 +00:00

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