maint: move nixos config to hosts dir

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2024-08-27 22:28:06 +02:00
parent 8ed9999148
commit 6e2b303f8e
Signed by: lander
GPG key ID: 0142722B4B0C536F
6 changed files with 2 additions and 2 deletions

View file

@ -1,18 +0,0 @@
{ 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
];
}