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