nix-config/home/pass/default.nix

10 lines
150 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./common.nix ];
programs.browserpass = {
enable = true;
browsers = [ "firefox" "chromium" ];
};
}