35 lines
511 B
Nix
35 lines
511 B
Nix
{
|
|
secret,
|
|
lib,
|
|
config,
|
|
...
|
|
}@args:
|
|
let
|
|
bash = import ./bash args;
|
|
in
|
|
{
|
|
core = {
|
|
home-manager.enable = true;
|
|
|
|
gpg = {
|
|
enable = true;
|
|
inherit (secret.crypto) publicKeys;
|
|
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;
|
|
};
|
|
}
|