Compare commits

..

No commits in common. "c8a14bf1298a6613fd3b1606c3d87469ec252019" and "bc87dab73348ff6db408d54ad9edcffbbb965ee2" have entirely different histories.

3 changed files with 8 additions and 1 deletions

View file

@ -72,6 +72,7 @@
# password-store # password-store
pass pass
password-store password-store
password-store-otp
# IDE # IDE
treesit-grammars.with-all-grammars treesit-grammars.with-all-grammars

View file

@ -16,6 +16,12 @@
font = fonts.monospace.name; font = fonts.monospace.name;
location = "center"; location = "center";
plugins = with pkgs; [rofi-emoji]; plugins = with pkgs; [rofi-emoji];
pass = {
enable = true;
extraConfig = ''
USERNAME_field='login'
'';
};
extraConfig = { extraConfig = {
modi = "run,drun,ssh,window,emoji,combi"; modi = "run,drun,ssh,window,emoji,combi";
combi-modi = "drun,ssh,window,emoji"; combi-modi = "drun,ssh,window,emoji";

View file

@ -12,7 +12,7 @@
enable = true; enable = true;
package = package =
pkgs.pass-nodmenu.withExtensions 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 = { settings = {
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store"; PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
PASSWORD_STORE_ENABLE_EXTENSIONS = "true"; PASSWORD_STORE_ENABLE_EXTENSIONS = "true";