fix(nixos): Finally fix protonmail-bridge

This commit is contained in:
punkfairie 2025-03-01 15:53:43 -08:00
parent f393f3afe3
commit c5bf2ba6e6
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,15 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.services.gnome-keyring;
in {
options.marleyos.services.gnome-keyring.enable = lib.mkEnableOption "gnome-keyring";
config = lib.mkIf cfg.enable {
services.gnome-keyring = {
enable = true;
};
};
}

View file

@ -13,7 +13,6 @@ in {
services.protonmail-bridge = { services.protonmail-bridge = {
enable = true; enable = true;
package = pkgs.protonmail-bridge-gui;
path = with pkgs; [gnome-keyring]; path = with pkgs; [gnome-keyring];
}; };