mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 10:43:55 -05:00
aly: add rofi-pass
This commit is contained in:
parent
a23de8ecc8
commit
42b2628205
|
@ -45,19 +45,6 @@ in {
|
|||
};
|
||||
|
||||
programs = {
|
||||
password-store = {
|
||||
enable = true;
|
||||
|
||||
package = pkgs.pass.withExtensions (exts:
|
||||
with exts; [
|
||||
pass-checkup
|
||||
pass-file
|
||||
pass-genphrase
|
||||
pass-otp
|
||||
pass-update
|
||||
]);
|
||||
};
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
|
@ -74,6 +61,29 @@ in {
|
|||
|
||||
gitui.enable = true;
|
||||
home-manager.enable = true;
|
||||
|
||||
password-store = {
|
||||
enable = true;
|
||||
|
||||
package = pkgs.pass.withExtensions (exts:
|
||||
with exts; [
|
||||
pass-checkup
|
||||
pass-file
|
||||
pass-genphrase
|
||||
pass-otp
|
||||
pass-update
|
||||
]);
|
||||
};
|
||||
|
||||
rofi.pass = {
|
||||
enable = true;
|
||||
package = pkgs.rofi-pass-wayland;
|
||||
|
||||
extraConfig = ''
|
||||
URL_field='url'
|
||||
USERNAME_field='login'
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.startServices = "legacy"; # Needed for auto-mounting agenix secrets.
|
||||
|
|
Loading…
Reference in a new issue