nix/home/program/default.nix

35 lines
511 B
Nix
Raw Normal View History

2024-10-24 09:30:46 +03:00
{
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;
};
};
2024-07-01 08:15:31 +03:00
desktop = {
chromium = import ./chromium args;
firefox = import ./firefox args;
};
}