This commit is contained in:
2026-03-05 12:54:45 +01:00
parent b36077733a
commit f72f97ecef
4 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
{ ... }: {
flake.nixosModules.apps-sys-vesktop = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
vesktop
];
};
}

View File

@@ -0,0 +1,16 @@
{ ... }: {
flake.homeModules.apps-usr-vesktop-all = { config, pkgs, ... }: {
home.file.".config/autostart/1password.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
'';
};
};
}