summary refs log blame commit diff
path: root/img/app/shell.nix
blob: 83dcd768e70d4663662a844f06296ba6e355f5d8 (plain) (tree)
1
2
3
4
5
6
7
8
9
                              
                                                              
 


                                              
 
                 
 
                                                


                                               


                                            

                                            




                                                           
  
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2021-2022 Alyssa Ross <hi@alyssa.is>

{ config ? import ../../nix/eval-config.nix {}
, run ? ../../vm/app/catgirl.nix
}:

with config.pkgs;

(import ./. { inherit config; }).overrideAttrs (
{ passthru ? {}, nativeBuildInputs ? [], ... }:

{
  nativeBuildInputs = nativeBuildInputs ++ [
    cloud-hypervisor jq qemu_kvm reuse
  ];

  KERNEL = "${passthru.kernel.dev}/vmlinux";

  runDef = import run { inherit config; };
  shellHook = ''
    export RUN_IMG="$(printf "%s\n" "$runDef"/blk/run.img)"
  '';
})