nixos-config/2configs/home-manager/cli.nix

19 lines
416 B
Nix
Raw Normal View History

2018-10-21 23:28:52 +02:00
{pkgs, ... }: {
2018-09-19 02:52:58 +02:00
home-manager.users.makefu = {
services.gpg-agent = {
2018-10-21 23:28:52 +02:00
enable = true;
2018-09-19 02:52:58 +02:00
defaultCacheTtl = 900;
maxCacheTtl = 7200;
defaultCacheTtlSsh = 3600;
maxCacheTtlSsh = 86400;
enableSshSupport = true;
2018-10-21 23:28:52 +02:00
enableScDaemon = true;
2018-09-19 02:52:58 +02:00
};
programs.fzf.enable = true; # alt-c
};
2018-10-21 23:28:52 +02:00
services.udev.packages = [
pkgs.libu2f-host
pkgs.yubikey-personalization
];
2018-09-19 02:52:58 +02:00
}