Created
October 5, 2022 21:51
-
-
Save lucperkins/839a2de7ecd1b840596d07559f813e5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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