Move fluidsynth service out of home.nix.

This commit is contained in:
jay
2025-07-02 05:18:15 -04:00
parent 6dce06e79a
commit be8db6d454
2 changed files with 7 additions and 5 deletions

View File

@@ -9,6 +9,7 @@
imports = [
inputs.hyprpanel.homeManagerModules.hyprpanel
./services/arrpc.nix
./services/fluidsynth.nix
];
@@ -280,11 +281,6 @@
};
services = {
fluidsynth = {
enable = true;
soundService = "pipewire-pulse";
};
hypridle = {
enable = true;
settings = {

View File

@@ -0,0 +1,6 @@
{ pkgs, ...}: {
services.fluidsynth = {
enable = true;
soundService = "pipewire-pulse";
};
}