nix/home/program/default.nix

11 lines
160 B
Nix
Raw Normal View History

{ secret, ... } @args: {
home-manager.enable = true;
gpg = {
enable = true;
inherit (secret.crypto) publicKeys;
};
firefox = import ./firefox args;
}