mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-25 08:09:08 +02:00
15 lines
359 B
Nix
15 lines
359 B
Nix
{ ... }: {
|
|
flake.homeModules.apps-usr-onepassword-all = { config, pkgs, ... }: {
|
|
home.file.".config/autostart/1password.desktop" = {
|
|
text = ''
|
|
[Desktop Entry]
|
|
Name=1Password
|
|
Exec=${pkgs._1password-gui}/bin/1password --silent %U
|
|
Terminal=false
|
|
Type=Application
|
|
Icon=1password
|
|
'';
|
|
};
|
|
};
|
|
}
|