diff options
| author | Martin Fischer <martin@push-f.com> | 2025-11-16 11:10:57 +0100 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2025-11-16 11:12:22 +0100 |
| commit | 628052d66ffaabc03ec3daa841b7a39e350d8826 (patch) | |
| tree | 96083883f8a65954f39dc19cf021ce2f60cf897c /lib/utils | |
| parent | 58e60b5a6b210bdee54d1fe98e664c6ed3e0f64c (diff) | |
fix(build): fix nix-build again
Was changed for some reason in 5a9ae03dc14ea5b68a99581c21a5d8085f1a3243.
Diffstat (limited to 'lib/utils')
| -rw-r--r-- | lib/utils/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/settings.py b/lib/utils/settings.py index 82d8938a..b2220ef9 100644 --- a/lib/utils/settings.py +++ b/lib/utils/settings.py @@ -49,7 +49,7 @@ class GlobalSettings(MutableMapping): # We set create=False here because this code is executed on module load # and via imports also runs on generate-inx-files, which with the Nix # package manager is executed with a non-writable home directory. - user_dir = get_user_dir(create=True) + user_dir = get_user_dir(create=False) self._settings_file = os.path.join(user_dir, "settings.json") self._settings = {} |
