fix(nixos): Finally fix protonmail-bridge
This commit is contained in:
parent
f393f3afe3
commit
c5bf2ba6e6
2 changed files with 15 additions and 1 deletions
15
modules/home/services/gnome-keyring/default.nix
Normal file
15
modules/home/services/gnome-keyring/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -13,7 +13,6 @@ in {
|
|||
|
||||
services.protonmail-bridge = {
|
||||
enable = true;
|
||||
package = pkgs.protonmail-bridge-gui;
|
||||
|
||||
path = with pkgs; [gnome-keyring];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue