browserpass: add module (#16)
* browserpass: add module * apply some review requests * browserpass: update to 1.0.5 * browserpass: install from Nixpkgs using `home.file`
This commit is contained in:
parent
196db18f5b
commit
e274fc732b
|
@ -14,6 +14,7 @@ let
|
||||||
./misc/pam.nix
|
./misc/pam.nix
|
||||||
./programs/bash.nix
|
./programs/bash.nix
|
||||||
./programs/beets.nix
|
./programs/beets.nix
|
||||||
|
./programs/browserpass.nix
|
||||||
./programs/eclipse.nix
|
./programs/eclipse.nix
|
||||||
./programs/emacs.nix
|
./programs/emacs.nix
|
||||||
./programs/firefox.nix
|
./programs/firefox.nix
|
||||||
|
|
80
modules/programs/browserpass.nix
Normal file
80
modules/programs/browserpass.nix
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
{ 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);
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue