initial commit

This commit is contained in:
Jakob Lechner 2025-09-19 16:43:25 +02:00
commit e047b2d567
8 changed files with 483 additions and 0 deletions

31
flake.nix Normal file
View file

@ -0,0 +1,31 @@
{
description = "Pixiecore VM boot system (flake version)";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
};
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in
{
packages.${system}.pxe = import ./pxe.nix { inherit pkgs nixpkgs; };
/*
# Wenn du auch `nixos-rebuild` nutzen willst:
nixosConfigurations.vm = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
({ pkgs, ... }: {
imports = [];
})
];
};
*/
};
}