diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-11-30 14:55:51 +0100 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-11-30 14:55:51 +0100 |
| commit | 6277a525062fec33e7b40d69b52987f80c5e6d5b (patch) | |
| tree | 954ed9850d8313505c6ba606c3b2a88a94179285 /modules/by-name/so/sound | |
| parent | modules/xdg: Remove the gtk-desktop-portal (diff) | |
| download | nixos-config-6277a525062fec33e7b40d69b52987f80c5e6d5b.zip | |
modules/sound: Make sound enable default to on
Diffstat (limited to '')
| -rw-r--r-- | modules/by-name/so/sound/module.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/by-name/so/sound/module.nix b/modules/by-name/so/sound/module.nix index 404de050..06df63e5 100644 --- a/modules/by-name/so/sound/module.nix +++ b/modules/by-name/so/sound/module.nix @@ -9,13 +9,14 @@ # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. { config, + libraries, lib, ... }: let cfg = config.soispha.sound; in { options.soispha.sound = { - enable = lib.mkEnableOption "sound based on pipewire"; + enable = libraries.base.options.mkEnable "sound based on pipewire"; }; config = lib.mkIf cfg.enable { |
