forked from nico/dots
nix: reorganise hyprland module into smaller modules
This commit is contained in:
parent
6d6d635fdd
commit
51de9e32c2
5 changed files with 46 additions and 24 deletions
13
modules/audio.nix
Normal file
13
modules/audio.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Enable sound.
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue