nixos-demo/os/hardware/macbook/pommed/default.nix

25 lines
464 B
Nix
Raw Permalink Normal View History

2025-07-12 00:28:21 +02:00
{
config,
pkgs,
...
}:
{
services.hardware.pommed = {
enable =
if
(config.beancloud.hardware.backlight.service == "pommed" && config.beancloud.hardware.macbook)
then
true
else
false;
configFile =
if
(config.beancloud.hardware.backlight.service == "pommed" && config.beancloud.hardware.macbook)
then
pkgs.callPackage ./config-macbook-air.nix { }
else
null;
};
}