Martin Berg Alstad def86ef9f3
- Replaced hardware.pulseaudio with service.pulseaudio
- Removed ghostty
- Commented out gnome-extention-manager, due to build failure
- Enabled Hyprland logs
2025-01-05 00:07:02 +01:00

36 lines
675 B
Nix

{
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
wireplumber
playerctl # Interaction with audioplayers and browsers
pavucontrol # GUI
spotify
];
security.rtkit.enable = true; # Enable RealtimeKit for audio purposes
services = {
pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
# Uncomment the following line if you want to use JACK applications
# jack.enable = true;
};
pulseaudio.enable = false;
};
}