2021-05-30 19:10:28 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
|
|
in {
|
2024-01-06 09:46:10 +00:00
|
|
|
users.users."${psCfg.user.name}" = {
|
|
|
|
extraGroups = ["audio"];
|
|
|
|
packages = with pkgs; [
|
|
|
|
# easyeffects, e.g. for microphone noise filtering
|
|
|
|
easyeffects
|
|
|
|
mu
|
|
|
|
pavucontrol
|
|
|
|
pa_applet
|
|
|
|
playerctl
|
|
|
|
# Needed for pactl cmd, until pw-cli is more mature (vol up/down hotkeys?)
|
|
|
|
pulseaudio
|
|
|
|
vimpc
|
|
|
|
];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
|
2024-01-06 09:46:10 +00:00
|
|
|
home-manager.users."${psCfg.user.name}" = {
|
|
|
|
xdg.configFile."vimpc/vimpcrc".source = ./.config/vimpc/vimpcrc;
|
|
|
|
systemd.user.services.easyeffects = import ./easyeffects.service.nix pkgs;
|
|
|
|
};
|
2021-05-30 19:10:28 +00:00
|
|
|
|
2024-01-06 09:46:10 +00:00
|
|
|
# rtkit is optional but recommended
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
}
|