mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-10-01 22:44:51 +02:00
added bluetooth support and qutebrowser
qutebrowser wasn't the one messing up with a weird dependency
This commit is contained in:
parent
c53fbd3514
commit
b4aad0c151
2 changed files with 24 additions and 0 deletions
|
@ -135,6 +135,29 @@
|
|||
};
|
||||
};
|
||||
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||
settings = {
|
||||
General = {
|
||||
Enable = "Source,Sink,Media,Socket";
|
||||
Experimental = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
services.blueman.enable = true;
|
||||
|
||||
# rtkit (optional, recommended) allows Pipewire to use the realtime scheduler for increased performance.
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true; # if not already enabled
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
# If you want to use JACK applications, uncomment the following
|
||||
#jack.enable = true;
|
||||
};
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
signal-desktop
|
||||
cider-2
|
||||
iamb
|
||||
qutebrowser
|
||||
];
|
||||
|
||||
virtualisation.containers.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue