commit c2e3fb49fe4771c9e6e7eb057075492575b74e5f parent c5fc02f1a0f95b85694cb2cb40dae51051fe7f83 Author: Silas Brack <silasbrack@gmail.com> Date: Tue, 30 Sep 2025 18:57:17 +0200 Clean up simple-web-app service Diffstat:
| M | nixos/simple-web-app.nix | | | 15 | --------------- |
1 file changed, 0 insertions(+), 15 deletions(-)
diff --git a/nixos/simple-web-app.nix b/nixos/simple-web-app.nix @@ -19,16 +19,6 @@ in defaultText = lib.literalMD "`packages.default` from the simple-web-app flake"; }; - # environment = mkOption { - # type = types.enum [ - # "dev" - # "prod" - # ]; - # default = "dev"; - # example = "prod"; - # description = "The environment (dev / prod) to deploy as."; - # }; - port = mkOption { type = types.nullOr types.int; default = 8000; @@ -37,11 +27,6 @@ in The port to bind simple web app server to. ''; }; - - # database_path = mkOption { - # type = types.str; - # default = "/tmp/test.sqlite3"; - # }; }; };