nix/home/program/default.nix

18 lines
254 B
Nix
Raw Normal View History

2024-07-01 08:15:31 +03:00
{ secret, ... } @args: let
bash = import ./bash args;
in {
home-manager.enable = true;
gpg = {
enable = true;
inherit (secret.crypto) publicKeys;
};
firefox = import ./firefox args;
2024-07-01 08:15:31 +03:00
bash = {
enable = true;
initExtra = bash.bashrc;
};
}