nixos-iso/flake.nix

15 lines
328 B
Nix
Raw Normal View History

2023-09-08 17:54:07 +02:00
{
description = "NixOS ISO of netali";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }@inputs: {
iso = (nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules = [ ./iso.nix ];
}).config.system.build.isoImage;
};
}