| 16 Nov 2024 |
magic_rb | In reply to @magic_rb:matrix.redalder.org did you figure this one out? im trying to do exactly what youre doing right now, i need to setup a bind mount /nix -> /persist/nix nodev."/nix" = {
fsType = "ext4";
device = "/dev/disk/by-id/ata-SK_hynix_SC311_SATA_128GB_MJ88N52701150940J-part3";
mountOptions = [
"X-mount.subdir=nix"
];
preMountHook = ''
tmpdir=$(mktemp -d)
mount /dev/disk/by-id/ata-SK_hynix_SC311_SATA_128GB_MJ88N52701150940J-part3 $tmpdir
mkdir $tmpdir/nix
umount $tmpdir
'';
};
jfc way too complex
| 14:20:15 |
| 17 Nov 2024 |
| shift joined the room. | 01:53:28 |
| @orzklv:matrix.org joined the room. | 02:29:01 |
shift | Anyone got a bcachefs, encrypted config I could work from? | 17:08:11 |
Fernando Rodrigues | LUKS-encrypted bcachefs or bcachefs-encrypted bcachefs? | 17:08:48 |
shift | Bcache encrypted. Luka plus bcachefs doesn't make sense to me :) | 17:09:15 |
shift | * Bcachefs encrypted. Luks plus bcachefs doesn't make sense to me :) | 17:09:29 |
shift | Maybe I need to make @lassulus:lassul.us provide me an example at the next NixOS Berlin Meetup ;P | 17:15:55 |
lassulus | hmm, maybe not implemented yet | 17:16:39 |
shift | In reply to @lassulus:lassul.us hmm, maybe not implemented yet I was told as the conference people had it working already. Got promised example configs but never received them, hehe. | 17:18:27 |
shift | So possibly. | 17:18:35 |
Kamilla 'ova | In reply to@magic_rb:matrix.redalder.org did you figure this one out? im trying to do exactly what youre doing right now, i need to setup a bind mount /nix -> /persist/nix https://yaso.su/Ur4CNRQ8 | 20:40:14 |
Kamilla 'ova | * https://yaso.su/Ur4CNRQ8
https://yaso.su/bHoQgySf | 20:40:45 |
magic_rb | thats also a valid way, i did it slightly differently | 20:40:56 |
| 18 Nov 2024 |
Kamilla 'ova | In reply to@magic_rb:matrix.redalder.org thats also a valid way, i did it slightly differently how? | 07:16:42 |
Kamilla 'ova | In reply to@magic_rb:matrix.redalder.org
nodev."/nix" = {
fsType = "ext4";
device = "/dev/disk/by-id/ata-SK_hynix_SC311_SATA_128GB_MJ88N52701150940J-part3";
mountOptions = [
"X-mount.subdir=nix"
];
preMountHook = ''
tmpdir=$(mktemp -d)
mount /dev/disk/by-id/ata-SK_hynix_SC311_SATA_128GB_MJ88N52701150940J-part3 $tmpdir
mkdir $tmpdir/nix
umount $tmpdir
'';
};
jfc way too complex
ah I see | 07:17:18 |
Kamilla 'ova | hmmm | 07:18:19 |