nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

rbw.nix (210B)


      1 { pkgs, domain, email, ... }:
      2 
      3 {
      4   programs.rbw = {
      5     enable = true;
      6     settings = {
      7       base_url = "https://pass.${domain}";
      8       email = "${email}";
      9       pinentry = pkgs.pinentry-tty;
     10       };
     11   };
     12 }
     13