Skip to content

Commit

Permalink
nixos/miniflux: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAShelf committed Oct 1, 2024
1 parent 2d61a04 commit c37a351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/web-apps/miniflux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ in

serviceConfig = {
ExecStart = [ "" (lib.getExe cfg.package) ];
EnvironmentFile = lib.optional (cfg.adminCredentialsFile != null) [ "" cfg.adminCredentialsFile ];
EnvironmentFile = lib.optionals (cfg.adminCredentialsFile != null) [ "" cfg.adminCredentialsFile ];
User = "miniflux";
DynamicUser = true;
RuntimeDirectoryMode = "0750";
Expand Down

0 comments on commit c37a351

Please sign in to comment.