mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
e274fc732b
* browserpass: add module * apply some review requests * browserpass: update to 1.0.5 * browserpass: install from Nixpkgs using `home.file`
80 lines
2.7 KiB
Nix
80 lines
2.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
browsers = [
|
|
"chrome"
|
|
"chromium"
|
|
"firefox"
|
|
"vivaldi"
|
|
];
|
|
in {
|
|
options = {
|
|
programs.browserpass = {
|
|
enable = mkEnableOption "the browserpass extension host application";
|
|
|
|
browsers = mkOption {
|
|
type = types.listOf (types.enum browsers);
|
|
default = browsers;
|
|
example = [ "firefox" ];
|
|
description = "Which browsers to install browserpass for";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf config.programs.browserpass.enable {
|
|
home.file = builtins.concatLists (with pkgs.stdenv; map (x:
|
|
if x == "chrome" then
|
|
let dir = if isDarwin
|
|
then "Library/Application Support/Google/Chrome/NativeMessagingHosts"
|
|
else ".config/google-chrome/NativeMessagingHosts";
|
|
in [
|
|
{
|
|
target = "${dir}/com.dannyvankooten.browserpass.json";
|
|
source = "${pkgs.browserpass}/etc/chrome-host.json";
|
|
}
|
|
{
|
|
target = "${dir}/../policies/managed/com.dannyvankooten.browserpass.json";
|
|
source = "${pkgs.browserpass}/etc/chrome-policy.json";
|
|
}
|
|
]
|
|
else if x == "chromium" then
|
|
let dir = if isDarwin
|
|
then "Library/Application Support/Chromium/NativeMessagingHosts"
|
|
else ".config/chromium/NativeMessagingHosts";
|
|
in [
|
|
{
|
|
target = "${dir}/com.dannyvankooten.browserpass.json";
|
|
source = "${pkgs.browserpass}/etc/chrome-host.json";
|
|
}
|
|
{
|
|
target = "${dir}/../policies/managed/com.dannyvankooten.browserpass.json";
|
|
source = "${pkgs.browserpass}/etc/chrome-policy.json";
|
|
}
|
|
]
|
|
else if x == "firefox" then
|
|
[ {
|
|
target = (if isDarwin
|
|
then "Library/Application Support/Mozilla/NativeMessagingHosts"
|
|
else ".mozilla/native-messaging-hosts")
|
|
+ "/com.dannyvankooten.browserpass.json";
|
|
source = "${pkgs.browserpass}/lib/mozilla/native-messaging-hosts/com.dannyvankooten.browserpass.json";
|
|
} ]
|
|
else if x == "vivaldi" then
|
|
let dir = if isDarwin
|
|
then "Library/Application Support/Vivaldi/NativeMessagingHosts"
|
|
else ".config/vivaldi/NativeMessagingHosts";
|
|
in [
|
|
{
|
|
target = "${dir}/com.dannyvankooten.browserpass.json";
|
|
source = "${pkgs.browserpass}/etc/chrome-host.json";
|
|
}
|
|
{
|
|
target = "${dir}/../policies/managed/com.dannyvankooten.browserpass.json";
|
|
source = "${pkgs.browserpass}/etc/chrome-policy.json";
|
|
}
|
|
]
|
|
else throw "unknown browser ${x}") config.programs.browserpass.browsers);
|
|
};
|
|
}
|