Bump inputs

This commit is contained in:
Andrea Ciceri 2025-01-09 11:17:06 +01:00
parent ea612479a0
commit a313be12ea
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
4 changed files with 61 additions and 83 deletions

View file

@ -2,10 +2,5 @@
{
sound.enable = true;
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
};
users.extraUsers.ccr.extraGroups = [ "audio" ];
}

View file

@ -1,13 +1,13 @@
{
pkgs,
config,
lib,
...
}:
{
services.blueman.enable = true;
hardware.pulseaudio.enable = true;
hardware.bluetooth = {
enable = true;
enable = lib.mkDefault true;
settings = {
General = {
Name = config.networking.hostName;

View file

@ -3,6 +3,6 @@
services.pipewire.enable = true;
hardware.pulseaudio = {
enable = lib.mkForce false;
enable = false;
};
}