Add pass and pass-secret-service, with gpg
This commit is contained in:
parent
20129bc73d
commit
7d72eda97b
|
@ -2,6 +2,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./pass
|
||||
./git
|
||||
./ssh
|
||||
./tui
|
||||
|
|
|
@ -31,6 +31,7 @@ in {
|
|||
];
|
||||
home.packages = with pkgs; [ libsForQt5.polkit-kde-agent configure-gtk ];
|
||||
programs = {
|
||||
password-store.package = pkgs.pass-wayland;
|
||||
firefox.package = pkgs.firefox-wayland;
|
||||
rofi = {
|
||||
package = pkgs.rofi-wayland;
|
||||
|
|
12
home/pass/default.nix
Normal file
12
home/pass/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
gpg.enable = true;
|
||||
password-store = {
|
||||
enable = true;
|
||||
settings.PASSWORD_STORE_DIR = "$HOME/.password-store";
|
||||
};
|
||||
};
|
||||
services.gpg-agent.enable = true;
|
||||
}
|
|
@ -25,7 +25,10 @@ in
|
|||
};
|
||||
};
|
||||
networking.networkmanager.enable = true;
|
||||
services.power-profiles-daemon.enable = true;
|
||||
services = {
|
||||
power-profiles-daemon.enable = true;
|
||||
passSecretService.enable = true;
|
||||
};
|
||||
virtualisation.podman.enable = true;
|
||||
programs = { ${shell}.enable = true; };
|
||||
# Set your time zone.
|
||||
|
|
Loading…
Reference in a new issue