initial commit
This commit is contained in:
commit
e887d8bc7d
13 changed files with 490 additions and 0 deletions
18
nixos/yubikey-gpg.nix
Normal file
18
nixos/yubikey-gpg.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.ssh.startAgent = false;
|
||||
|
||||
services.pcscd.enable = true;
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
services.gnome.gnome-keyring.enable = lib.mkForce false;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
yubikey-personalization
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue