mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-12-12 21:55:19 +01:00
12 lines
182 B
Nix
12 lines
182 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
sound.enable = true;
|
||
|
|
hardware.pulseaudio.enable = true;
|
||
|
|
environment.systemPackages = with pkgs; [
|
||
|
|
noisetorch
|
||
|
|
pavucontrol
|
||
|
|
playerctl
|
||
|
|
];
|
||
|
|
}
|