feat: add new host and start modularizing system configuration

This commit is contained in:
Jay Looney 2025-06-16 13:54:38 -05:00
parent ebe58addaa
commit 4a8c953223
22 changed files with 1050 additions and 288 deletions

15
modules/nixos/audio.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
# For real-time audio/production consider: https://github.com/musnix/musnix
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
pavucontrol
];
}