Initial commit

This commit is contained in:
2024-05-29 15:24:31 -05:00
commit a0c6081818
31 changed files with 1392 additions and 0 deletions

17
features/audio.nix Normal file
View File

@@ -0,0 +1,17 @@
{ lib, pkgs, localPackages, ... }: {
environment.systemPackages = with pkgs; [
pulseaudio
pavucontrol
feishin
easyeffects
helvum
];
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
}