summaryrefslogtreecommitdiff
path: root/hosts/glados/services.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/glados/services.nix')
-rw-r--r--hosts/glados/services.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/glados/services.nix b/hosts/glados/services.nix
new file mode 100644
index 0000000..a71acbd
--- /dev/null
+++ b/hosts/glados/services.nix
@@ -0,0 +1,12 @@
+{config, ...}: {
+ services = {
+ dbus.enable = true;
+ pipewire = {
+ enable = true;
+ wireplumber.enable = true;
+ alsa.enable = true;
+ jack.enable = true;
+ pulse.enable = true;
+ };
+ };
+}