Migrate to Protonmail
This commit is contained in:
parent
efaa8c62a4
commit
46b52f7aaf
|
@ -9,6 +9,7 @@
|
||||||
./iosevka.nix
|
./iosevka.nix
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
./lockscreen.nix
|
./lockscreen.nix
|
||||||
|
./mail.nix
|
||||||
./picom.nix
|
./picom.nix
|
||||||
./polybar.nix
|
./polybar.nix
|
||||||
./rofi.nix
|
./rofi.nix
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
systemd.user.services.protonmail-bridge = {
|
||||||
|
description = "Protonmail Bridge";
|
||||||
|
enable = true;
|
||||||
|
script =
|
||||||
|
"${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive --log-level info";
|
||||||
|
|
||||||
|
path = [ pkgs.gnome3.gnome-keyring ];
|
||||||
|
wantedBy = [ "graphical-session.target" ];
|
||||||
|
partOf = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
|
users.users.agatha.packages = [ pkgs.unstable.protonmail-bridge-gui ];
|
||||||
|
}
|
Loading…
Reference in New Issue