rename files

This commit is contained in:
2026-03-15 11:54:05 +01:00
parent 16ca79521d
commit 0977fd3f0d
4 changed files with 0 additions and 0 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
'';
};
};
}