Configure sound

This commit is contained in:
Torjus Håkestad 2024-02-27 12:03:55 +01:00
parent 77b5bbdf32
commit dcff16294f
2 changed files with 12 additions and 0 deletions

View File

@ -3,5 +3,6 @@
./podman.nix
./fonts.nix
./users.nix
./services.nix
];
}

11
system/services.nix Normal file
View File

@ -0,0 +1,11 @@
{ ... }: {
services = {
dbus.enable = true;
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
};
}