modules!!!

This commit is contained in:
Schrottkatze 2023-02-13 12:54:21 +01:00
parent eb1a4786f4
commit 6f1ebdcc9a
24 changed files with 877 additions and 574 deletions

33
modules/desktop/audio.nix Normal file
View file

@ -0,0 +1,33 @@
{ config, lib, pkgs, ... }:
{
config = {
programs = {
noisetorch.enable = true;
};
services = {
pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
jack.enable = true;
};
};
home-manager.users.jade = { pkgs, ... }: {
home.packages = with pkgs; [
pavucontrol
pulseaudioFull
easyeffects
cava
volumeicon
playerctl
];
xsession.windowManager.i3.config.startup = [
{
command = "pkill volumeicon; volumeicon";
always = true;
}
];
};
};
}