dotfiles/modules/brightnessctl/default.nix

19 lines
268 B
Nix
Raw Normal View History

2024-07-19 12:00:55 +00:00
{
config,
lib,
pkgs,
...
}:
2024-07-18 21:36:50 +00:00
with lib;
let
cfg = config.modules.brightnessctl;
2024-07-19 12:00:55 +00:00
in
{
2024-07-18 21:36:50 +00:00
options.modules.brightnessctl = {
enable = mkEnableOption "brightnessctl";
};
2024-07-19 12:00:55 +00:00
config = mkIf cfg.enable { environment.systemPackages = [ pkgs.brightnessctl ]; };
}