Compare commits
No commits in common. "c8a14bf1298a6613fd3b1606c3d87469ec252019" and "bc87dab73348ff6db408d54ad9edcffbbb965ee2" have entirely different histories.
c8a14bf129
...
bc87dab733
|
@ -72,6 +72,7 @@
|
|||
# password-store
|
||||
pass
|
||||
password-store
|
||||
password-store-otp
|
||||
|
||||
# IDE
|
||||
treesit-grammars.with-all-grammars
|
||||
|
|
|
@ -16,6 +16,12 @@
|
|||
font = fonts.monospace.name;
|
||||
location = "center";
|
||||
plugins = with pkgs; [rofi-emoji];
|
||||
pass = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
USERNAME_field='login'
|
||||
'';
|
||||
};
|
||||
extraConfig = {
|
||||
modi = "run,drun,ssh,window,emoji,combi";
|
||||
combi-modi = "drun,ssh,window,emoji";
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
enable = true;
|
||||
package =
|
||||
pkgs.pass-nodmenu.withExtensions
|
||||
(exts: with exts; [pass-update pass-import]); # pass-audit
|
||||
(exts: with exts; [pass-otp pass-update pass-import]); # pass-audit
|
||||
settings = {
|
||||
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
|
||||
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
|
||||
|
|
Reference in a new issue