| 18 Aug 2025 |
Sylvie (They/She) 🏳️⚧️ | I tried just passing that in via --impure and it did the trick | 12:37:14 |
Sylvie (They/She) 🏳️⚧️ | 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 (They/She) 🏳️⚧️ | hmmmm | 12:47:39 |
Sylvie (They/She) 🏳️⚧️ | 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 (They/She) 🏳️⚧️ | I'd like to turn that off lol | 12:49:48 |
Sylvie (They/She) 🏳️⚧️ | I don't see it in the loader.conf options | 12:50:09 |
Sylvie (They/She) 🏳️⚧️ | it sounds like setting that up is a rather involved process fwiw | 12:53:28 |
Sylvie (They/She) 🏳️⚧️ | I'd say I can worry about that once I actually have two disks 😅 | 12:53:44 |
Sylvie (They/She) 🏳️⚧️ | hmmmm | 12:59:29 |
Sylvie (They/She) 🏳️⚧️ |  Download photo.jpg | 12:59:47 |
Sylvie (They/She) 🏳️⚧️ | there is no partition table there, but the mountpoints disko generates seem to assume there is? | 13:00:30 |
Sylvie (They/She) 🏳️⚧️ | 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 (They/She) 🏳️⚧️ | this looks fine to me though 🤔 | 13:01:51 |