oom-hardware/uconsole/overlays/dtb-cpu-revision.nix
2024-10-17 15:00:31 +02:00

31 lines
642 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkEnableOption mkIf mkMerge mkOption types;
cfg = config.hardware.raspberry-pi."4".overlays.cpu-revision;
in {
options.hardware.raspberry-pi."4".overlays.cpu-revision = {
enable = mkEnableOption ''overlay enable'';
name = mkOption {
type = types.str;
default = "cpu-revision";
};
};
config = mkMerge [
(mkIf cfg.enable {
hardware.deviceTree = {
overlays = [
{
name = "${cfg.name}";
filter = "bcm2711-rpi-cm4.dtb";
dtsFile = ./source/cpu-revision.dts;
}
];
};
})
];
}