dotfiles/common/laptop.nix

20 lines
339 B
Nix
Raw Normal View History

2024-08-02 14:09:42 +02:00
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkEnableOption;
in
{
2024-09-02 14:43:17 +02:00
options.patagia.laptop.enable = mkEnableOption "Laptop tools and configuration";
2024-08-02 14:09:42 +02:00
2024-12-02 09:42:24 +01:00
config = mkIf config.laptop.enable {
2024-08-02 14:09:42 +02:00
environment.systemPackages = with pkgs; [ gnomeExtensions.battery-health-charging ];
services.fprintd.enable = true;
};
}