From 95c859b3f4fe9c19afad7e8ec85db6ec47110e8a Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 23 Mar 2026 22:32:55 +0000 Subject: [PATCH] Sound --- system/default.nix | 1 + system/sound.nix | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 system/sound.nix 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; + } +}