nixos-config/modules/programs/q.nix

38 lines
786 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.custom.q;
in {
options.programs.custom.q = {
enable = mkEnableOption "custom.programs.q";
timeZones = mkOption {
default = [ "Europe/Berlin" ];
type = with types; listOf str;
example = [ "Europe/Berlin" "Asia/Kolkata" "Asia/Singapore" ];
};
enableIntelBacklight = mkOption {
default = true;
type = with types; bool;
};
enableBattery = mkOption {
default = true;
type = with types; bool;
};
};
config = mkIf cfg.enable {
environment.systemPackages = [
2019-12-20 05:54:26 +01:00
(pkgs.q.override {
2019-10-24 02:20:38 +02:00
timeZones = cfg.timeZones;
enableIntelBacklight = cfg.enableIntelBacklight;
enableBattery = cfg.enableBattery;
})
];
};
}