Enable pulseaudio

This commit is contained in:
Ethan Lane 2024-07-07 21:22:44 +01:00
parent e160aca31b
commit c4708a6fbc
2 changed files with 9 additions and 6 deletions

View file

@ -63,7 +63,6 @@ in {
pm2 pm2
plexamp plexamp
polybar polybar
pulseaudio
rofi rofi
rofi-emoji rofi-emoji
steam steam

View file

@ -75,6 +75,7 @@
}; };
programs.zsh.enable = true; programs.zsh.enable = true;
programs.neovim.defaultEditor = true;
fonts = { fonts = {
packages = with pkgs; [ packages = with pkgs; [
@ -96,15 +97,18 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
docker docker
pulseaudio
]; ];
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
xdg.portal = { xdg.portal = {
enable = true; enable = true;
config.common.default = "*"; config.common.default = "*";
extraPortals = [pkgs.xdg-desktop-portal-gtk]; extraPortals = [pkgs.xdg-desktop-portal-gtk];
}; };
hardware.pulseaudio.enable = true;
system.stateVersion = "24.05"; system.stateVersion = "24.05";
} }