chore: reflect account migration

Change-Id: Iee327470932e58707473e876982cf22b392c2efa
This commit is contained in:
rootile
2026-01-31 20:59:02 +00:00
committed by Rutile
parent 16bd27fb78
commit 64d610fddc
11 changed files with 17 additions and 19 deletions
+2 -2
View File
@@ -73,7 +73,7 @@ class NixSettings:
# FIXME(Jade): #953 this is annoying in the CLI too, we should fix it!
def serialise(value: Any) -> str:
# TODO(Commentator2.0): why exactly are ints supported?
# TODO(rootile): why exactly are ints supported?
if is_value_of_type(value, set[str | int] | list[str | int]):
return " ".join(serialise(e) for e in value)
if is_value_of_type(value, str | int):
@@ -145,7 +145,7 @@ class Nix:
settings = dataclasses.replace(self.settings)
if flake:
settings.feature("nix-command", "flakes")
# FIXME(Commentator2.0): Darwin needs special handling here, as it does not support (non-root) chroots...
# FIXME(rootile): Darwin needs special handling here, as it does not support (non-root) chroots...
# Hence, it cannot build using a relocated store so we just use the local (aka global) store instead
# This is kinda ugly but what else can one do
if sys.platform == "darwin":