Fix bluetooth

This commit is contained in:
Isshi0417 2024-07-04 14:36:40 +09:00
parent 5c9d5e18ce
commit 74189b3786

View File

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ inputs, config, pkgs, ... }:
{ inputs, config, pkgs, lib, ... }:
{
imports =
@ -80,6 +80,10 @@
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;