1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00
nixos-hardware/purism/librem/5r4/lockdown-fix.nix
Jörg Thalheim 9b51a7a1f7 purism/librem/5r4: make it usuable without an overlay
In larger installations nixpkgs.overlays adds significant overhead
because it's harder to share nixpkgs between different NixOS machines
i.e. using nixpkgs.pkgs
2024-05-06 09:00:21 +02:00

27 lines
979 B
Nix

{ config, pkgs, lib, ... }:
lib.mkIf config.hardware.librem5.lockdownFix {
# We blacklist the drivers so they don't load during early boot when the sensors are disconnected,
boot.blacklistedKernelModules = [
"st_lsm6dsx_spi"
"st_lsm6dsx_i2c"
"st_lsm6dsx"
];
# and load them when the phone is fully booted;
systemd.services.librem5-lockdown-support = {
description = "Set up drivers for the orientation and proximity sensors on Librem 5";
serviceConfig.Type = "oneshot";
serviceConfig.ExecStart = "${config.hardware.librem5.package}/bin/lockdown-support.sh";
wantedBy = [ "default.target" ];
path = [ pkgs.kmod ];
};
# udev rules from librem5-base handle going into "lockdown mode" and back.
assertions = [{
assertion = with config.hardware.librem5;
lockdownFix -> installUdevPackages;
message =
"'hardware.librem5.lockdownFix' requires 'hardware.librem5.installUdevPackages', but it is not enabled.";
}];
}