beatufitull front end for ozone modration ,, wit catpucoin and ebergarden !
ozone moderation
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix bools

+11 -3
+11 -3
nix/module.nix
··· 106 106 wantedBy = [ "multi-user.target" ]; 107 107 108 108 serviceConfig = { 109 - Environment = lib.mapAttrsToList (k: v: "${k}=${if builtins.isInt v then toString v else v}") ( 110 - lib.filterAttrs (_: v: v != null) cfg.settings 111 - ); 109 + Environment = lib.mapAttrsToList ( 110 + k: v: 111 + "${k}=${ 112 + if builtins.isInt v then 113 + toString v 114 + else if builtins.isBool v then 115 + toString v 116 + else 117 + v 118 + }" 119 + ) (lib.filterAttrs (_: v: v != null) cfg.settings); 112 120 113 121 ExecStart = getExe cfg.package; 114 122 Restart = "on-failure";