{ description = "k8s land"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; flake-parts.url = "github:hercules-ci/flake-parts"; }; outputs = inputs @ {...}: inputs.flake-parts.lib.mkFlake {inherit inputs;} { flake = {}; systems = ["x86_64-linux"]; perSystem = {pkgs, system, ...}: { _module.args.pkgs = import inputs.nixpkgs { inherit system; config.allowUnfree = true; }; devShells.default = pkgs.mkShell { packages = with pkgs; [ wget zip debootstrap vboot_reference binwalk pv ]; }; }; }; }