From 2e0d2d014f4c637b2eed03cecc5491b84467100c Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 28 Nov 2023 10:52:20 -0800 Subject: [PATCH] Apparently shm_size doesn't actually exist --- frigate-container.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frigate-container.nix b/frigate-container.nix index 17f1985..ff308bf 100644 --- a/frigate-container.nix +++ b/frigate-container.nix @@ -191,11 +191,11 @@ in { }; }; - shm-size = mkOption { - type = str; - description = "Size of shared memory."; - default = "512mb"; - }; + # shm-size = mkOption { + # type = str; + # description = "Size of shared memory."; + # default = "512mb"; + # }; }; config = mkIf cfg.enable { @@ -224,7 +224,7 @@ in { "${frigateCfg}:/config/config.yml" "${cfg.state-directory}:/media/frigate" ]; - shm_size = cfg.shm-size; + # shm_size = cfg.shm-size; devices = cfg.devices; ports = [ "${toString cfg.ports.frigate}:5000"