nix/modules/home-manager/macos.nix
2023-10-06 02:05:32 -05:00

16 lines
244 B
Nix

{outputs, ...}: {
imports = with outputs.homeManagerModules; [
common
desktop
];
# TODO: pinentry curses?
/*
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "gnome3";
enableSSHSupport = true;
};
*/
}