nix/home/program/default.nix

25 lines
386 B
Nix
Raw Normal View History

{ secret, ... }@args:
let
bash = import ./bash args;
in
{
home-manager.enable = true;
gpg = {
enable = true;
inherit (secret.crypto) publicKeys;
2024-10-22 00:24:36 +03:00
mutableKeys = true;
mutableTrust = true;
settings = {
keyserver = "hkps://keys.openpgp.org";
};
};
firefox = import ./firefox args;
2024-07-01 08:15:31 +03:00
bash = {
enable = true;
initExtra = bash.bashrc;
};
}