Evie Litherland-Smith
a52ccf7ef4
Delete some unused (test) scripts Reduce what is sync'd by rsync-local-config: remove fonts, bat config and zellij config
19 lines
425 B
Nix
19 lines
425 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../gpg/default.nix
|
|
../shell/git.nix
|
|
];
|
|
programs = {
|
|
gpg.enable = true;
|
|
password-store = {
|
|
enable = true;
|
|
package = pkgs.pass-nodmenu.withExtensions (exts: with exts; [ pass-update ]);
|
|
settings = {
|
|
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
|
|
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
|
|
};
|
|
};
|
|
};
|
|
}
|