home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

passwordstore.nix (235B)


      1 { pkgs, ... }:
      2 
      3 {
      4   programs.password-store = {
      5     enable = true;
      6     package = pkgs.pass-wayland.withExtensions (exts: [ exts.pass-otp exts.pass-genphrase exts.pass-update ]);
      7   };
      8   home.packages = with pkgs; [
      9     wofi-pass
     10   ];
     11 }