2022-12-04 16:10:00 +00:00
|
|
|
{pkgs, ...}: let
|
2023-09-20 18:17:50 +01:00
|
|
|
encryptedUSB = import ../data/drives/encryptedUSB.nix;
|
2023-09-18 03:56:58 +01:00
|
|
|
|
2023-09-19 17:53:44 +01:00
|
|
|
encUSBMount = pkgs.writeShellScriptBin "enc_usb_mount" ''
|
2022-12-14 10:08:14 +00:00
|
|
|
set -x
|
2023-09-19 22:30:02 +01:00
|
|
|
${encUSBUnmount}/bin/enc_usb_unmount
|
2023-09-18 03:56:58 +01:00
|
|
|
cat /secrets/usb_encryption_passphrase | cryptsetup luksOpen ${encryptedUSB.encryptedPath} ${encryptedUSB.mapperName} -
|
|
|
|
mount ${encryptedUSB.mapperPath} -o rw ${encryptedUSB.mountpoint}
|
2022-11-10 11:25:33 +00:00
|
|
|
'';
|
2022-12-14 10:11:51 +00:00
|
|
|
|
2023-09-19 17:53:44 +01:00
|
|
|
encUSBUnmount = pkgs.writeShellScriptBin "enc_usb_unmount" ''
|
2022-12-14 10:08:14 +00:00
|
|
|
set -x
|
2023-09-18 03:56:58 +01:00
|
|
|
umount -flR ${encryptedUSB.mountpoint} || true
|
|
|
|
cryptsetup close ${encryptedUSB.mapperName} || true
|
2022-11-10 11:25:33 +00:00
|
|
|
'';
|
|
|
|
in {
|
2023-09-19 17:53:44 +01:00
|
|
|
environment.systemPackages = [encUSBMount encUSBUnmount];
|
2022-11-10 11:25:33 +00:00
|
|
|
|
2023-09-18 03:56:58 +01:00
|
|
|
systemd.tmpfiles.rules = ["d ${encryptedUSB.mountpoint} - chaos root"];
|
2022-11-10 11:25:33 +00:00
|
|
|
|
2022-12-14 10:08:14 +00:00
|
|
|
systemd.services.enc-usb-mount = {
|
2022-12-04 13:45:43 +00:00
|
|
|
path = [pkgs.util-linux pkgs.cryptsetup];
|
2022-12-14 10:08:14 +00:00
|
|
|
wantedBy = ["multi-user.target"];
|
2022-11-10 11:25:33 +00:00
|
|
|
script = ''
|
2023-09-19 17:53:44 +01:00
|
|
|
${encUSBMount}/bin/enc_usb_mount
|
2022-11-10 11:25:33 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-12-14 10:08:14 +00:00
|
|
|
systemd.services.enc-usb-unmount = {
|
2022-12-04 13:45:43 +00:00
|
|
|
path = [pkgs.util-linux pkgs.cryptsetup];
|
2022-11-10 11:25:33 +00:00
|
|
|
script = ''
|
2023-09-19 22:30:02 +01:00
|
|
|
${encUSBMount}/bin/enc_usb_unmount
|
2022-11-10 11:25:33 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
services.udev.extraRules = ''
|
2023-09-18 03:56:58 +01:00
|
|
|
ACTION=="add", ENV{PARTNAME}=="${encryptedUSB.encryptedPartLabel}", ENV{SYSTEMD_WANTS}="enc-usb-mount.service", ENV{UDISKS_PRESENTATION_HIDE}="1"
|
|
|
|
ACTION=="remove", ENV{PARTNAME}=="${encryptedUSB.encryptedPartLabel}", ENV{SYSTEMD_WANTS}="enc-usb-unmount.service"
|
2022-11-10 11:25:33 +00:00
|
|
|
'';
|
|
|
|
}
|