| 18 Aug 2025 |
Sylvie (she/it) 🏳️⚧️ | hmmm, well, the good thing is | 12:26:42 |
Sylvie (she/it) 🏳️⚧️ | that I can probably just umount that, disable the raid temporarily, and just mount the underlying partition | 12:27:15 |
Sylvie (she/it) 🏳️⚧️ | cause my secret is that I don't actually have a second disk yet 😬 | 12:27:40 |
Sylvie (she/it) 🏳️⚧️ | I'm setting this up in anticipation of getting a second disk sometime soon lol | 12:28:00 |
Sylvie (she/it) 🏳️⚧️ | I'll just hope that this also won't cause trouble when I deploy updates | 12:28:37 |
lassulus | you could check this:
If $SYSTEMD_RELAX_ESP_CHECKS=1 is set the validation checks for
the ESP are relaxed, and the path specified with --esp-path= may
refer to any kind of file system on any kind of partition.
Similarly, $SYSTEMD_RELAX_XBOOTLDR_CHECKS=1 turns off some
validation checks for the Extended Boot Loader partition.
| 12:29:07 |
lassulus | not sure they apply here, seems like the wrong way around | 12:29:37 |
lassulus | but it should work I think | 12:30:12 |
Sylvie (she/it) 🏳️⚧️ | hmmm yeah | 12:37:05 |
Sylvie (she/it) 🏳️⚧️ | I tried just passing that in via --impure and it did the trick | 12:37:14 |
Sylvie (she/it) 🏳️⚧️ | now how/where do I add that to my config 😅 | 12:37:37 |
lassulus | maybe add a nixos-install wrapper | 12:37:56 |
lassulus | environment.systemPackages = [
(pkgs.writeScriptBin "nixos-install" ''
export SYSTEMD_RELAX_ESP_CHECKS=1
exec {pkgs.nixos-install}/bin/nixos-install "$@"
'')
]
| 12:39:10 |
lassulus | or something like that | 12:39:13 |
Sylvie (she/it) 🏳️⚧️ | hmmmm | 12:47:39 |
Sylvie (she/it) 🏳️⚧️ | https://github.com/systemd/systemd/issues/12468#issuecomment-698782077
And yes, sd-boot writes to the ESP if boot counting/boot assessment is enabled.
| 12:49:43 |
Sylvie (she/it) 🏳️⚧️ | I'd like to turn that off lol | 12:49:48 |
Sylvie (she/it) 🏳️⚧️ | I don't see it in the loader.conf options | 12:50:09 |
Sylvie (she/it) 🏳️⚧️ | it sounds like setting that up is a rather involved process fwiw | 12:53:28 |
Sylvie (she/it) 🏳️⚧️ | I'd say I can worry about that once I actually have two disks 😅 | 12:53:44 |
Sylvie (she/it) 🏳️⚧️ | hmmmm | 12:59:29 |
Sylvie (she/it) 🏳️⚧️ |  Download photo.jpg | 12:59:47 |
Sylvie (she/it) 🏳️⚧️ | there is no partition table there, but the mountpoints disko generates seem to assume there is? | 13:00:30 |
Sylvie (she/it) 🏳️⚧️ | nix eval .#nixosConfigurations.boop.config.fileSystems."/boot" | nix run nixpkgs#nixfmt-rfc-style
{
autoFormat = false;
autoResize = false;
depends = [ ];
device = "/dev/md/esp";
enable = true;
encrypted = {
blkDev = null;
enable = false;
keyFile = null;
label = null;
};
formatOptions = null;
fsType = "vfat";
label = null;
mountPoint = "/boot";
neededForBoot = false;
noCheck = false;
options = [ "umask=0077" ];
overlay = {
lowerdir = null;
upperdir = null;
useStage1BaseDirectories = true;
workdir = null;
};
stratis = {
poolUuid = null;
};
}
| 13:01:42 |
Sylvie (she/it) 🏳️⚧️ | this looks fine to me though 🤔 | 13:01:51 |
Sylvie (she/it) 🏳️⚧️ | seems mdmonitor.service failed cause my config is invalid | 13:12:25 |
Sylvie (she/it) 🏳️⚧️ | dunno if that's related hmmm | 13:12:49 |
Sylvie (she/it) 🏳️⚧️ | is that service required for md to function? | 13:13:04 |
Sylvie (she/it) 🏳️⚧️ | the name doesn't make it sound like it lol | 13:13:11 |
lassulus | usually not | 13:13:15 |