20 lines
268 B
Nix
20 lines
268 B
Nix
{ secret, ... }@args:
|
|
let
|
|
bash = import ./bash args;
|
|
in
|
|
{
|
|
home-manager.enable = true;
|
|
|
|
gpg = {
|
|
enable = true;
|
|
inherit (secret.crypto) publicKeys;
|
|
};
|
|
|
|
firefox = import ./firefox args;
|
|
|
|
bash = {
|
|
enable = true;
|
|
initExtra = bash.bashrc;
|
|
};
|
|
}
|