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