nix/modules/home-manager/macos.nix

16 lines
242 B
Nix
Raw Normal View History

2023-10-06 00:49:19 -05:00
{outputs, ...}: {
imports = with outputs.homeManagerModules; [
desktop
2024-02-06 09:23:59 -06:00
pass
2023-10-06 00:49:19 -05:00
];
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
}