summaryrefslogtreecommitdiff
path: root/modules/gnupg.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2023-08-05 20:48:58 +0200
committerGrigory Shipunov2023-08-05 20:51:15 +0200
commit9e5d5bd874850df8090c6b43a09bd6fab74e537c (patch)
tree718ea139ed960358204472ec7e7151c73a37035e /modules/gnupg.nix
parent8b8d90cec49f9af706d0a1fc090c89441943b088 (diff)
retire toaster and remove dead code
Diffstat (limited to 'modules/gnupg.nix')
-rw-r--r--modules/gnupg.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/gnupg.nix b/modules/gnupg.nix
deleted file mode 100644
index 6d52e66..0000000
--- a/modules/gnupg.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- environment.systemPackages = with pkgs; [
- gnupg
- opensc
-
- yubikey-personalization-gui
- ];
-
- # smartcard support
- services.pcscd.enable = false;
- hardware.gpgSmartcards.enable = true;
- programs.gnupg.agent = {
- enable = true;
- enableSSHSupport = true;
- };
-}