infrastructure/proxmox.tjo.cloud/flake.nix
Tine 609e1089b1
Some checks failed
/ lint (push) Has been cancelled
feat: working on it
2024-09-01 10:10:21 +02:00

18 lines
394 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 = [
./configuration.nix
];
};
};
};
}