From 8b4966fcbe512b7127586b4b9479bec06f3f3a6e Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 25 May 2021 17:59:45 +0200 Subject: [PATCH] machines: aramis: sound: use common module --- machines/aramis/sound.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/machines/aramis/sound.nix b/machines/aramis/sound.nix index 38365f6..586f3ff 100644 --- a/machines/aramis/sound.nix +++ b/machines/aramis/sound.nix @@ -1,5 +1,10 @@ { ... }: { - sound.enable = true; - hardware.pulseaudio.enable = true; + my.modules.sound = { + enable = true; + + pulse = { + enable = true; + }; + }; }