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; + }; + }; +}