diff --git a/modules/apps/usr/1password-all.nix b/modules/apps/usr/1password-all.nix new file mode 100644 index 0000000..962779e --- /dev/null +++ b/modules/apps/usr/1password-all.nix @@ -0,0 +1,13 @@ +{ ... }: { + flake.homeModules.apps-usr-1password = { config, pkgs, ... }: { + home.file.".config/autostart/1password.desktop" = { + text = '' + [Desktop Entry] + Name=1Password + Exec=1password --silent %U + Terminal=false + Type=Application + Icon=1password + ''; + }; +}