19 lines
339 B
Nix
19 lines
339 B
Nix
|
{ pkgs
|
||
|
, lib
|
||
|
, config
|
||
|
, ... }: with lib; let
|
||
|
cfg = config.faucet.asusd;
|
||
|
in {
|
||
|
options.faucet.asusd = {
|
||
|
enable = mkEnableOption "ASUS laptop userland support daemon";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
services.asusd.enable = true;
|
||
|
|
||
|
environment.persistence."/nix/persist/fhs".directories = [
|
||
|
"/etc/asusd"
|
||
|
];
|
||
|
};
|
||
|
}
|