zed-bin still doesn't show the UI, but this is at least one attempt Update flake inputs
25 lines
717 B
Nix
25 lines
717 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
c = pkgs.callPackage;
|
|
in
|
|
{
|
|
#default = iso;
|
|
#iso = top.self.nixosConfigurations.iso.config.system.build.isoImage;
|
|
#iso-beta = self.nixosConfigurations.iso-beta.config.system.build.isoImage;
|
|
aacs = c ./aacs.nix { };
|
|
brew = c ./homebrew.nix { };
|
|
create_ssl = c ./create_ssl.nix { };
|
|
gen-build = c ./gen-build { };
|
|
hms = c ./hms { };
|
|
inject-darwin = c ./inject-darwin.nix { };
|
|
inject = c ./inject.nix { };
|
|
qemu-hook = c ./qemu-hook.nix { };
|
|
setup-ssh = c ./setup-ssh { };
|
|
upgrade-pg-cluster = c ./upgrade-pg-cluster.nix { };
|
|
vfio_startup = c ./vfio_startup.nix { };
|
|
vfio_shutdown = c ./vfio_shutdown.nix { };
|
|
zim = c ./zim.nix { };
|
|
zed-bin = c ./zed-bin.nix { };
|
|
}
|