11 lines
298 B
Nix
11 lines
298 B
Nix
{pkgs, ...}: {
|
|
programs.librewolf = {enable = true;};
|
|
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";
|
|
}
|