summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Santiago <[email protected]>2025-07-25 11:30:54 -0300
committerLeonardo Santiago <[email protected]>2025-07-25 11:30:54 -0300
commit35ac4b36f67bdc2cdf3170334c0450dd638e5a5a (patch)
treebb78ebd6eed486829d317b411cc98898c9e7db36
parent31b1de18850e894b4235e1578daf67f3b659bee1 (diff)
fix: only enable alsa if its linux
-rw-r--r--modules/emacs/package.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/emacs/package.nix b/modules/emacs/package.nix
index 97e940b..0c61afb 100644
--- a/modules/emacs/package.nix
+++ b/modules/emacs/package.nix
@@ -12,7 +12,7 @@ in
package = pkgs.emacs-unstable.override {
withGTK3 = true;
withNativeCompilation = true;
- withAlsaLib = true;
+ withAlsaLib = pkgs.stdenv.isLinux;
withSystemd = true;
withToolkitScrollBars = true;
withImageMagick = true;