This commit is contained in:
2026-03-15 13:35:22 +01:00
parent 55bfa43a8b
commit ec3189ea21
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
{ ... }: {
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 --start-minimized
StartupNotify=false
Terminal=false
Icon=vesktop
'';
};
};
}