aboutsummaryrefslogtreecommitdiff
path: root/flake/apps.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake/apps.nix')
-rw-r--r--flake/apps.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/flake/apps.nix b/flake/apps.nix
deleted file mode 100644
index e0b23f4..0000000
--- a/flake/apps.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ 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";
- };
- };
- };
-}