nix/home/program/default.nix

33 lines
464 B
Nix
Raw Normal View History

2024-10-24 09:30:46 +03:00
{
2024-11-04 04:37:29 +03:00
config,
lib,
secret,
...
} @args: let
bash = import ./bash args;
in {
core = {
home-manager.enable = true;
2024-11-04 04:37:29 +03:00
gpg = {
inherit (secret.crypto) publicKeys;
enable = true;
mutableKeys = true;
mutableTrust = true;
settings = {
keyserver = "hkps://keys.openpgp.org";
};
};
2024-11-04 04:37:29 +03:00
bash = {
enable = true;
initExtra = bash.bashrc;
};
};
2024-07-01 08:15:31 +03:00
2024-11-04 04:37:29 +03:00
desktop = {
chromium = import ./chromium args;
firefox = import ./firefox args;
};
}