18 lines
285 B
Nix
18 lines
285 B
Nix
|
|
||
|
{ lib, config, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.snowhawk.easyeffects;
|
||
|
in
|
||
|
{
|
||
|
options.snowhawk.easyeffects = {
|
||
|
enable = lib.mkEnableOption "easyeffects";
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
# for easyeffects
|
||
|
dconf.enable = true;
|
||
|
services.easyeffects.enable = true;
|
||
|
};
|
||
|
}
|