diff --git a/system/default.nix b/system/default.nix index c40919d..1811406 100644 --- a/system/default.nix +++ b/system/default.nix @@ -11,6 +11,7 @@ ./programs.nix ./fonts.nix ./hardware.nix + ./sound.nix ./virtualisation.nix ]; } diff --git a/system/sound.nix b/system/sound.nix new file mode 100644 index 0000000..4947c83 --- /dev/null +++ b/system/sound.nix @@ -0,0 +1,15 @@ +{ ... }: + +{ + hardware = { + sound.enable = true; + }; + software.pulseaudio.enable = false; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + jack.enable = true; + } +}