nix/home/program/default.nix

35 lines
511 B
Nix
Raw Normal View History

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