add(nix): helvum

This commit is contained in:
Léana 江 2023-12-29 10:44:51 +01:00 committed by Léana 江
parent 3537abf5a2
commit 23895a11e4
2 changed files with 17 additions and 13 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, ... }: {
sound = {
enable = true;
mediaKeys.enable = true;
};
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
environment.systemPackages = with pkgs; [ helvum ];
}