mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
12 lines
253 B
Nix
12 lines
253 B
Nix
{ pkgs, lib, config, ... }: {
|
|
options = {
|
|
mods.sound.enable = lib.mkEnableOption "enables sound";
|
|
};
|
|
|
|
config = lib.mkIf config.mods.sound.enable {
|
|
services.pipewire = {
|
|
enable = true;
|
|
pulse.enable = true;
|
|
};
|
|
};
|
|
}
|