mashu: Fix phosh not recognizing the volume keys and backlight

This commit is contained in:
PapaTutuWawa 2021-10-24 13:29:54 +02:00
parent b9cb00b865
commit f1c8b50bdf

View File

@ -50,6 +50,26 @@ in mkHost config {
}; };
services.gnome.gnome-settings-daemon.enable = true; services.gnome.gnome-settings-daemon.enable = true;
systemd.user.services = {
gsd-media = {
description = "GSD media keys handling";
wantedBy = [ "default.target" ];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.gnome.gnome-settings-daemon}/libexec/gsd-media-keys";
Restart = "always";
};
};
gsd-power = {
description = "GSD media keys handling";
wantedBy = [ "default.target" ];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.gnome.gnome-settings-daemon}/libexec/gsd-power";
Restart = "always";
};
};
};
programs.phosh = { programs.phosh = {
enable = true; enable = true;
phocConfig = { phocConfig = {