From 0289164bd2085c757b21acaf043d1c43e272ea19 Mon Sep 17 00:00:00 2001 From: oxalica Date: Thu, 19 Sep 2024 05:27:56 -0400 Subject: [PATCH] fix(nix): relax configuration type for now --- contrib/module.nix | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/contrib/module.nix b/contrib/module.nix index 752b7be..842a42e 100644 --- a/contrib/module.nix +++ b/contrib/module.nix @@ -32,22 +32,7 @@ let freeformType = toml.type; # TODO: Auto-generate these options? Now only required options are documented. - options = { - database.path = mkOption { - type = types.path; - default = "/var/lib/blahd/db.sqlite"; - }; - - listen.address = mkOption { - type = types.str; - example = "localhost:8080"; - }; - - server.base_url = mkOption { - type = types.str; - example = "http://localhost:8080"; - }; - }; + options = { }; }; in