- Added Gstreamer packages for audio data - Replaced catppuccin wallpaper on lockscreen with one where the logo is higher - Replaced dolphin with nautilus file manager - Moved Gnome related configs to /gnome - Added Gnome appindicator and extension manager - Added loupe and gimp - Added mime types for image files
35 lines
695 B
Nix
35 lines
695 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
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|