1
0
Fork 0
forked from autowolf/nix

extend pipewire config

This commit is contained in:
do butterflies cry? 2026-02-23 13:17:35 +10:00
parent a97c3b3885
commit 5dfb68916f

View file

@ -17,7 +17,13 @@
})
];
};
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
download-buffer-size = 524288000; # 500 MiB
};
# Use the systemd-boot EFI boot loader.
boot.loader = {
@ -75,11 +81,20 @@
libinput.enable = true;
# Enable audio
# Multimedia Framework
# With backwards compatability for alsa/pulseaudio/jack
pipewire = {
enable = true;
wireplumber.enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
};
security.rtkit.enable = true; # simplifies pipewire's life
programs = {
hyprland = {