forked from tangled.org/core
Monorepo for Tangled

nix/modules: remove cookie secret from appview module

Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>

anirudh.fi 5b600825 46c6be46

verified
Changed files
-6
nix
modules
-6
nix/modules/appview.nix
··· 22 default = 3000; 23 description = "Port to run the appview on"; 24 }; 25 - cookie_secret = mkOption { 26 - type = types.str; 27 - default = "00000000000000000000000000000000"; 28 - description = "Cookie secret"; 29 - }; 30 environmentFile = mkOption { 31 type = with types; nullOr path; 32 default = null; ··· 57 58 environment = { 59 TANGLED_DB_PATH = "appview.db"; 60 - TANGLED_COOKIE_SECRET = cfg.cookie_secret; 61 }; 62 }; 63 };
··· 22 default = 3000; 23 description = "Port to run the appview on"; 24 }; 25 environmentFile = mkOption { 26 type = with types; nullOr path; 27 default = null; ··· 52 53 environment = { 54 TANGLED_DB_PATH = "appview.db"; 55 }; 56 }; 57 };