From f5bcf62a517b54b269d3498d1215cd8fb93bca82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Fri, 1 Nov 2024 17:40:35 +0100 Subject: [PATCH] Home Gen414 @ 2024-11-01-17:40 --- modules/home/swaync/config.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) 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"; } ]; };