Martin Berg Alstad f60462a770
🧹 Organizing
Moved code to separate files.

Rofi config in home-manager.

Moved home.nix to /home.

Scripts to format and rebuild
2024-12-29 00:34:39 +01:00

30 lines
578 B
Nix

{
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
wireplumber
playerctl # Interaction with audioplayers and browsers
pavucontrol # GUI
spotify
];
hardware.pulseaudio.enable = false; # Use Pipewire, the modern sound subsystem
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;
};
}