nixos/global/asusd/default.nix

24 lines
344 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
2024-01-07 22:01:31 +08:00
cfg = config.global.asusd;
2025-01-13 11:52:09 +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"
];
};
}