diff --git a/modules/home/swaync/config.nix b/modules/home/swaync/config.nix index f90d766..960e45f 100644 --- a/modules/home/swaync/config.nix +++ b/modules/home/swaync/config.nix @@ -1,4 +1,4 @@ -{...}: { +{pkgs, ...}: { xdg.enable = true; xdg.configFile = { "swaync/themes" = { @@ -87,23 +87,19 @@ actions = [ { label = " "; - command = "amixer set Master toggle"; + command = "${pkgs.alsa-utils}/bin/amixer set Master toggle"; } { label = ""; - command = "amixer set Capture toggle"; + command = "${pkgs.alsa-utils}/bin/amixer set Capture toggle"; } { label = " "; - command = "nm-connection-editor"; + command = "${pkgs.networkmanagerapplet}/bin/nm-connection-editor"; } { label = "󰂯"; - command = "blueman-manager"; - } - { - label = "󰏘"; - command = "nwg-look"; + command = "${pkgs.blueman}/bin/blueman-manager"; } ]; };