Price Hiller
a388e85676
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m5s
13 lines
220 B
Nix
13 lines
220 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.password-store = {
|
|
enable = true;
|
|
package = pkgs.pass.withExtensions(exts: [
|
|
exts.pass-file
|
|
]);
|
|
settings = {
|
|
PASSWORD_STORE_KEY = "C3FADDE7A8534BEB";
|
|
};
|
|
};
|
|
}
|