10 lines
130 B
Nix
10 lines
130 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
config = lib.mkIf config.local.profiles.laptop.enable {
|
||
|
hardware.brillo.enable = true;
|
||
|
};
|
||
|
}
|