mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:13:54 -05:00
Aly Raffauf
aec4214add
* aly: add password-store with extensions * aly: add rofi-pass * aly: simplify rofi-pass config * aly: add rbw config * aly/wm: bind super+p to rofi-rbw * aly: remove password-store * aly: remove rofi-pass * aly/firefox: remove keepassxc extension * aly: install bitwarden-desktop * rofi: include rofi-rbw by default with sane defaults * aly/wm: don't autostart keepassxc * aly: remove keepassxc secret * aly/wm: center and float bitwarden gui * chromium: don't install keepassxc extension by default
20 lines
491 B
Nix
20 lines
491 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.chromium.enable {
|
|
programs.chromium = {
|
|
enable = true;
|
|
package = config.ar.home.apps.chromium.package;
|
|
|
|
extensions = [
|
|
{id = "enamippconapkdmgfgjchkhakpfinmaj";} # dearrow
|
|
{id = "jldhpllghnbhlbpcmnajkpdmadaolakh";} # todoist
|
|
{id = "mnjggcdmjocbbbhaepdhchncahnbgone";} # sponsorblock
|
|
{id = "ocabkmapohekeifbkoelpmppmfbcibna";} # zoom redirector
|
|
];
|
|
};
|
|
};
|
|
}
|