diff --git a/nixos/modules/hardware/default.nix b/nixos/modules/hardware/default.nix index f77ad04..efa0833 100644 --- a/nixos/modules/hardware/default.nix +++ b/nixos/modules/hardware/default.nix @@ -1,6 +1,5 @@ { imports = [ ./nvidia - ./yubikey ]; } diff --git a/nixos/modules/hardware/yubikey/default.nix b/nixos/modules/hardware/yubikey/default.nix deleted file mode 100644 index 8deb1ed..0000000 --- a/nixos/modules/hardware/yubikey/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ config, lib, pkgs, ... }: - -let - cfg = config.sisyphus.hardware.yubikey; -in { - options.sisyphus.hardware.yubikey.enable = lib.mkEnableOption "YubiKey support"; - - config = lib.mkIf cfg.enable { - # Enable smart card reading - services.pcscd.enable = true; - - programs.gnupg.agent = { - enable = true; - pinentryFlavor = "curses"; - }; - }; -} diff --git a/stow/git/.config/git/config b/stow/git/.config/git/config index 196318f..19e8151 100644 --- a/stow/git/.config/git/config +++ b/stow/git/.config/git/config @@ -1,15 +1,10 @@ [user] name = "Tibo De Peuter" - email = "tibo@depeuter.dev" - signingkey = "0x9B11F5243089DB5B" + email = "tibo.depeuter@gmail.com" [color] ui = true -[commit] - # Always sign commits - gpgsign = true - [core] editor = "vim"; excludesFile = "~/.config/git/ignore"