15 lines
421 B
Nix
15 lines
421 B
Nix
{ lib, ... }: {
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
pass = (super.pass.override { pass = super.pass-wayland; }).withExtensions (ext: [ ext.pass-otp ]);
|
|
})
|
|
];
|
|
|
|
home-manager.users.charlotte = { pkgs, ... }: {
|
|
programs.password-store = {
|
|
enable = true;
|
|
settings = { PASSWORD_STORE_DIR = "/home/charlotte/repos/passwords"; };
|
|
};
|
|
services.password-store-sync.enable = true;
|
|
};
|
|
}
|