nix-config/home/pass/default.nix

10 lines
150 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ config, pkgs, ... }:
{
imports = [ ./common.nix ];
programs.browserpass = {
enable = true;
browsers = [ "firefox" "chromium" ];
};
}