This commit is contained in:
2024-04-07 18:34:46 +02:00
parent a8df230aa7
commit c560b94ae8
7 changed files with 73 additions and 44 deletions

View File

@@ -0,0 +1,6 @@
{ config, ... }:
{
# Enable Bluetooth
hardware.bluetooth.enable = true;
}

View File

@@ -0,0 +1,6 @@
{ config, ... }:
{
# Enable CUPS to print documents.
services.printing.enable = true;
}

View File

@@ -0,0 +1,20 @@
{ config, ... }:
{
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
}