14 lines
269 B
Nix
14 lines
269 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.firefox = { enable = true; };
|
|
|
|
programs.browserpass = {
|
|
enable = true;
|
|
browsers = [ "firefox" ];
|
|
};
|
|
|
|
home.file.".mozilla/native-messaging-hosts/passff.json".source =
|
|
"${pkgs.passff-host}/share/passff-host/passff.json";
|
|
}
|
|
|