home: add music (fluidsynth) feature

This commit is contained in:
Gabriel Fontes
2023-02-01 18:10:53 -03:00
parent cf7e742578
commit da2cafa15b
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -5,6 +5,7 @@
./features/rgb
./features/trusted
./features/games
./features/music
];
wallpaper = (import ./wallpapers).aenami-bright-planet;
+11
View File
@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ alsa-utils ];
services.fluidsynth = {
enable = true;
soundService = "pipewire-pulse";
extraOptions = [
"-g 2"
];
};
}