From dcff16294f2a0882d03c0b216ab32ede6977db59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Tue, 27 Feb 2024 12:03:55 +0100 Subject: [PATCH] Configure sound --- system/default.nix | 1 + system/services.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 system/services.nix diff --git a/system/default.nix b/system/default.nix index 9bfcda9..c7ebc4b 100644 --- a/system/default.nix +++ b/system/default.nix @@ -3,5 +3,6 @@ ./podman.nix ./fonts.nix ./users.nix + ./services.nix ]; } diff --git a/system/services.nix b/system/services.nix new file mode 100644 index 0000000..fbfec73 --- /dev/null +++ b/system/services.nix @@ -0,0 +1,11 @@ +{ ... }: { + services = { + dbus.enable = true; + pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + }; +}