diff options
Diffstat (limited to 'flake/apps.nix')
| -rw-r--r-- | flake/apps.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/flake/apps.nix b/flake/apps.nix new file mode 100644 index 0000000..e0b23f4 --- /dev/null +++ b/flake/apps.nix @@ -0,0 +1,16 @@ +{ self, ... }: +{ + perSystem = + { pkgs, ... }: + let + mkFcunyNet = import "${self}/src/fcuny.net" { inherit pkgs; }; + in + { + apps = { + "fcuny_net-serve" = { + type = "app"; + program = "${mkFcunyNet.serve}/bin/serve-fcuny-net"; + }; + }; + }; +} |
