10 lines
150 B
Nix
10 lines
150 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ./common.nix ];
|
||
|
programs.browserpass = {
|
||
|
enable = true;
|
||
|
browsers = [ "firefox" "chromium" ];
|
||
|
};
|
||
|
}
|