26 lines
429 B
Nix
26 lines
429 B
Nix
|
{ pkgs, ...}: {
|
||
|
services.pipewire = {
|
||
|
enable = true;
|
||
|
alsa.enable = true;
|
||
|
alsa.support32Bit = true;
|
||
|
pulse.enable = true;
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
firefox
|
||
|
thunderbird
|
||
|
vlc
|
||
|
usbutils
|
||
|
pciutils
|
||
|
pinentry-qt
|
||
|
wl-clipboard
|
||
|
usb-modeswitch
|
||
|
usb-modeswitch-data
|
||
|
modemmanager
|
||
|
xdg-desktop-portal
|
||
|
xdg-desktop-portal-kde
|
||
|
grim
|
||
|
wireguard-tools
|
||
|
];
|
||
|
}
|