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 21, 2024
1 parent 1f4f2ee commit ef039d0
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 ef039d0

Please sign in to comment.