initial commit
This commit is contained in:
commit
e047b2d567
8 changed files with 483 additions and 0 deletions
31
flake.nix
Normal file
31
flake.nix
Normal 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 = [];
|
||||
})
|
||||
];
|
||||
};
|
||||
*/
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue