{ pkgs, ... }: { home.packages = [ pkgs.whisper-dictate ]; systemd.user.services.whisper-dictate = { Unit = { Description = "Whisper dictation daemon"; After = [ "graphical-session.target" ]; }; Service = { ExecStart = "${pkgs.whisper-dictate}/bin/whisper-dictate-daemon"; Restart = "on-failure"; Environment = "DISPLAY=:0"; }; Install.WantedBy = [ "default.target" ]; }; }