diff --git a/nixos/common/desktops/plasma6/default.nix b/nixos/common/desktops/plasma6/default.nix index 3065b6ce..87751a17 100644 --- a/nixos/common/desktops/plasma6/default.nix +++ b/nixos/common/desktops/plasma6/default.nix @@ -50,13 +50,13 @@ light-theme = { enable = true; path = [ pkgs.at pkgs.fx pkgs.nodejs ]; - script = ''echo "plasma-apply-colorscheme -platform offscreen Arc" | at -u ${username} `fx /tmp/wttr.in .weather[0].astronomy[0].sunrise`''; + script = ''echo "plasma-apply-colorscheme -platform offscreen Arc" | ${pkgs.at} -u ${username} `${pkgs.fx} /tmp/wttr.in .weather[0].astronomy[0].sunrise`''; serviceConfig.Type = "oneshot"; }; dark-theme = { enable = true; path = [ pkgs.at pkgs.fx pkgs.nodejs ]; - script = ''echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at -u ${username} `fx /tmp/wttr.in .weather[0].astronomy[0].sunset`''; + script = ''echo "plasma-apply-colorscheme -platform offscreen ArcDark" | ${pkgs.at} -u ${username} `${pkgs.fx} /tmp/wttr.in .weather[0].astronomy[0].sunset`''; serviceConfig.Type = "oneshot"; }; };