12 lines
136 B
Nix
12 lines
136 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.browserpass = {
|
||
|
enable = true;
|
||
|
browsers = [
|
||
|
"chromium"
|
||
|
"firefox"
|
||
|
];
|
||
|
};
|
||
|
}
|