mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
12 lines
167 B
Nix
12 lines
167 B
Nix
{ pkgs, ... }: {
|
|
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
pamixer # Audio control
|
|
];
|
|
|
|
}
|