feat: volume control on tux, moved wg into common

This commit is contained in:
2025-01-26 00:41:42 -08:00
parent 9b8bf921fe
commit 9a25a834a6
5 changed files with 25 additions and 1 deletions

13
nix/modules/pipewire.nix Normal file
View File

@@ -0,0 +1,13 @@
{
lib,
config,
pkgs,
...
}:
{
config = lib.mkIf config.services.pipewire.enable {
environment.systemPackages = with pkgs; [
pamixer
];
};
}