mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
12 lines
242 B
Nix
12 lines
242 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
in
|
|
mkIf config.programs.waybar.enable {
|
|
systemd.user.services.waybar.Unit.X-Restart-Triggers = [
|
|
(builtins.hashString "sha256" config.programs.waybar.style)
|
|
];
|
|
}
|