firefox: fix incorrect condition

This error was introduced by me when switching from use of an explicit
`if` expression to `optionalAttrs`.
This commit is contained in:
Robert Helgesson 2024-09-20 00:35:54 +02:00
parent b5e09b85f2
commit 1786e2afdb
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -61,7 +61,7 @@ let
}) // {
General = {
StartWithLastProfile = 1;
} // lib.optionalAttrs (cfg.profileVersion == null) {
} // lib.optionalAttrs (cfg.profileVersion != null) {
Version = cfg.profileVersion;
};
};