mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
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:
parent
b5e09b85f2
commit
1786e2afdb
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ let
|
||||||
}) // {
|
}) // {
|
||||||
General = {
|
General = {
|
||||||
StartWithLastProfile = 1;
|
StartWithLastProfile = 1;
|
||||||
} // lib.optionalAttrs (cfg.profileVersion == null) {
|
} // lib.optionalAttrs (cfg.profileVersion != null) {
|
||||||
Version = cfg.profileVersion;
|
Version = cfg.profileVersion;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue