nix/modules/home-manager/macos.nix
2024-02-06 09:23:59 -06:00

17 lines
253 B
Nix

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