mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
10 lines
128 B
Nix
10 lines
128 B
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
config = lib.mkIf config.fireproof.hardware.battery {
|
||
|
|
services.upower.enable = true;
|
||
|
|
};
|
||
|
|
}
|