add yubikey

This commit is contained in:
2024-04-14 22:06:49 +02:00
parent 49cdb024fb
commit 6034938775
4 changed files with 26 additions and 1 deletions

View File

@@ -2,8 +2,9 @@
{
imports = [
./plasma.nix
./firefox.nix
./plasma.nix
./yubikey.nix
];
# Home Manager needs a bit of information about you and the paths it should

10
home/jonas/yubikey.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, ... }:
{
programs.gpg = {
enable = true;
settings = {
enable-ssh-support = true;
};
};
}