Wrap protonmail-bridge-gui to force ignoring password-store
This commit is contained in:
parent
bb2c14b964
commit
d609b3116a
|
@ -66,7 +66,19 @@
|
|||
"steamcmd"
|
||||
"nomachine-client"
|
||||
];
|
||||
overlays = [ (final: prev: { inherit (inputs.plasma-manager.packages.${prev.system}) rc2nix; }) ];
|
||||
overlays = [
|
||||
(final: prev: {
|
||||
inherit (inputs.plasma-manager.packages.${prev.system}) rc2nix;
|
||||
protonmail-bridge-gui = pkgs.symlinkJoin {
|
||||
name = "protonmail-bridge-gui";
|
||||
paths = [ prev.protonmail-bridge-gui ];
|
||||
buildInputs = [ pkgs.makeWrapper ];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/protonmail-bridge-gui --set PASSWORD_STORE_DIR /dev/null
|
||||
'';
|
||||
};
|
||||
})
|
||||
];
|
||||
};
|
||||
system = {
|
||||
stateVersion = "23.05";
|
||||
|
|
Loading…
Reference in a new issue