tvl-depot/users/wpcarro/nixos/modules/laptop.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
306 B
Nix
Raw Normal View History

# Laptop-specific NixOS configuration.
_:
{
# Automatically detect location for redshift.
services.geoclue2.enable = true;
location.provider = "geoclue2";
# Enable power-saving features.
powerManagement.powertop.enable = true;
# Backlight control command.
programs.light.enable = true;
}