nix/home/program/default.nix
2024-11-06 01:07:30 +03:00

33 lines
464 B
Nix

{
config,
lib,
secret,
...
} @args: let
bash = import ./bash args;
in {
core = {
home-manager.enable = true;
gpg = {
inherit (secret.crypto) publicKeys;
enable = true;
mutableKeys = true;
mutableTrust = true;
settings = {
keyserver = "hkps://keys.openpgp.org";
};
};
bash = {
enable = true;
initExtra = bash.bashrc;
};
};
desktop = {
chromium = import ./chromium args;
firefox = import ./firefox args;
};
}