config/maddie/browserpass.nix

12 lines
136 B
Nix
Raw Normal View History

2023-03-11 12:11:12 +00:00
{ config, pkgs, ... }:
{
programs.browserpass = {
enable = true;
browsers = [
"chromium"
"firefox"
];
};
}