diff --git a/home/misterio/atlas.nix b/home/misterio/atlas.nix index b5794063..490c4c84 100644 --- a/home/misterio/atlas.nix +++ b/home/misterio/atlas.nix @@ -5,6 +5,7 @@ ./features/rgb ./features/trusted ./features/games + ./features/music ]; wallpaper = (import ./wallpapers).aenami-bright-planet; diff --git a/home/misterio/features/music/default.nix b/home/misterio/features/music/default.nix new file mode 100644 index 00000000..60d5c9d2 --- /dev/null +++ b/home/misterio/features/music/default.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ alsa-utils ]; + services.fluidsynth = { + enable = true; + soundService = "pipewire-pulse"; + extraOptions = [ + "-g 2" + ]; + }; +}