Gabe Venberg
57252af57b
This involved setting up the pass password manager to manage secrets, which in turn required setting up gpg, which needed syncthing to sync keys.
15 lines
151 B
Nix
15 lines
151 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.password-store = {
|
|
enable = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
ripasso-cursive
|
|
];
|
|
}
|