From 5111fcc4a49bcef1c336e03f5279d053bae3806c Mon Sep 17 00:00:00 2001 From: Ethel Morgan Date: Fri, 29 May 2020 21:59:17 +0100 Subject: move various hardware configs around --- nixos/modules/yubikey.nix | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 nixos/modules/yubikey.nix (limited to 'nixos/modules/yubikey.nix') diff --git a/nixos/modules/yubikey.nix b/nixos/modules/yubikey.nix deleted file mode 100644 index 0c16807..0000000 --- a/nixos/modules/yubikey.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ config, lib, pkgs, ... }: -with lib; - -let - cfg = config.eth.yubikey; - -in { - - options.eth.yubikey = { - enable = mkEnableOption "Set up Yubikey"; - }; - - config = mkIf cfg.enable { - - hardware.u2f.enable = true; - - programs.ssh.startAgent = false; - - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - pinentryFlavor = "curses"; - }; - - services.pcscd.enable = true; - - services.udev.packages = with pkgs; [ - libu2f-host - yubikey-personalization - ]; - - environment.systemPackages = with pkgs; [ - gnupg - pinentry-curses - ]; - - environment.shellInit = '' - gpg-connect-agent /bye - export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) - ''; - programs.fish.shellInit = '' - gpg-connect-agent /bye - set -Ux SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket) - ''; - - }; -} -- cgit v1.2.3