2024-01-05 22:24:35 +08:00
|
|
|
{ pkgs
|
|
|
|
, lib
|
|
|
|
, config
|
|
|
|
, ... }: with lib; let
|
2024-01-07 22:01:31 +08:00
|
|
|
cfg = config.global.asusd;
|
2024-01-05 22:24:35 +08:00
|
|
|
in {
|
2024-01-07 22:01:31 +08:00
|
|
|
options.global.asusd = {
|
2024-01-05 22:24:35 +08:00
|
|
|
enable = mkEnableOption "ASUS laptop userland support daemon";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.asusd.enable = true;
|
|
|
|
|
|
|
|
environment.persistence."/nix/persist/fhs".directories = [
|
|
|
|
"/etc/asusd"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|