mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
17 lines
442 B
Plaintext
17 lines
442 B
Plaintext
{ ... }: {
|
|
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
|
|
'';
|
|
};
|
|
};
|
|
}
|