universedesktop: Back to Tiling™️

This commit is contained in:
2024-05-05 09:33:47 -04:00
parent f6629ce275
commit 29b0281c72
6 changed files with 58 additions and 29 deletions

View File

@@ -0,0 +1,13 @@
{ config, pkgs, lib, ... }: {
# Enable sound.
# rtkit is optional but recommended
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
# jack.enable = true;
};
}