Files
nix-fleet/modules/apps/usr/vesktop.nix
2026-03-05 12:55:46 +01:00

17 lines
424 B
Nix

{ ... }: {
flake.homeModules.apps-usr-vesktop-all = { config, pkgs, ... }: {
home.file.".config/autostart/vesktop.desktop" = {
text = ''
[Desktop Entry]
Type=Application
Name=Vesktop
Comment=Vesktop autostart script
Exec=${pkgs.vesktop}/bin/vesktop --enable-speech-dispatcher
StartupNotify=false
Terminal=false
Icon=vesktop
'';
};
};
}