infrastructure/proxmox.tjo.cloud/flake.nix
Tine fadd0c41d4
Some checks failed
/ lint (push) Failing after 2m17s
feat: hey it works, ish
2024-09-01 11:26:09 +02:00

19 lines
418 B
Nix

{
description = "Basic NixOS qcow2 image with CloudInit for Proxmox";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
};
outputs =
{ self, nixpkgs }:
{
nixosConfigurations = {
build-qcow2 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./qcow2.nix
./configuration.nix
];
};
};
};
}