set up nixos on yukari
This commit is contained in:
parent
e2b9168d8f
commit
9373febdb6
9 changed files with 191 additions and 2 deletions
12
nixos/common/audio.nix
Normal file
12
nixos/common/audio.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ inputs, config, pkgs, ... }: {
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
pavucontrol
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue