Skip to content

Instantly share code, notes, and snippets.

@lucperkins
Created October 5, 2022 21:51
Show Gist options
  • Save lucperkins/839a2de7ecd1b840596d07559f813e5b to your computer and use it in GitHub Desktop.
Save lucperkins/839a2de7ecd1b840596d07559f813e5b to your computer and use it in GitHub Desktop.
{
apps = {
# nix run <flake>#server
server = {
type = "app";
program = "${myPkg}/bin/server";
};
# nix run <flake>#client
client = {
type = "app";
program = "${myPkg}/bin/client";
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment