nix/modules/home-manager/macos.nix

16 lines
244 B
Nix
Raw Normal View History

2023-10-06 00:49:19 -05:00
{outputs, ...}: {
imports = with outputs.homeManagerModules; [
common
desktop
];
2023-10-06 02:05:32 -05:00
# TODO: pinentry curses?
/*
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "gnome3";
enableSSHSupport = true;
};
*/
2023-10-06 00:49:19 -05:00
}