My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/modules/workstation/audio/default.nix

16 lines
365 B

{ config, lib, pkgs, home-manager, ... } @ args:
let cfg = config.libkookie.audio;
in
with lib;
{
options.libkookie.audio = {
enable = mkEnableOption "audio server handling";
discovery = mkEnableOption "pulseaudio auto discovery";
jack = mkEnableOption "jack audio server handling";
};
config = mkIf cfg.enable (import ./core.nix args);
}