Files
nixos/modules/hardware/sound/default.nix
T
marthsincemelee 8ce14dc6e0 update: 24.11
2024-12-10 20:50:55 +01:00

15 lines
351 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.my.hardware.bluetooth;
in
{
options.my.hardware.sound = with lib; {
enable = mkEnableOption "Sound configuration";
};
config = lib.mkIf cfg.enable {
hardware.pulseaudio.enable = false;
hardware.pulseaudio.support32Bit = true;
users.extraUsers.finn.extraGroups = [ "audio" ];
};
}