fli/eza.nix: init

This commit is contained in:
Charlie Root 2024-09-09 19:51:13 +02:00
commit 204d97da9d
5 changed files with 93 additions and 4 deletions

View file

@ -0,0 +1,19 @@
{
config,
lib,
...
}: let
cfg = config.modules.system.hardware.sound.pipewire;
inherit (lib) mkIf;
in {
config = mkIf cfg.enable {
services.pipewire = {
enable = true;
audio.enable = true;
pulse.enable = true;
jack.enable = true;
alsa.enable = true;
};
};
}