From 2599fef92b70076ed16352709e32bfdc3c02d552 Mon Sep 17 00:00:00 2001 From: Ulic-youthlic Date: Fri, 10 Jan 2025 22:29:45 +0800 Subject: [PATCH] remove gpg option in system level --- nixos/modules/default.nix | 1 - nixos/modules/gpg.nix | 11 ----------- 2 files changed, 12 deletions(-) delete mode 100644 nixos/modules/gpg.nix diff --git a/nixos/modules/default.nix b/nixos/modules/default.nix index 0728cb4..81d5c56 100644 --- a/nixos/modules/default.nix +++ b/nixos/modules/default.nix @@ -16,7 +16,6 @@ ++ [ ./nix.nix ./home.nix - ./gpg.nix ]; config = { diff --git a/nixos/modules/gpg.nix b/nixos/modules/gpg.nix deleted file mode 100644 index 822b7cf..0000000 --- a/nixos/modules/gpg.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ ... }: -{ - config = { - programs.gnupg = { - agent = { - enable = true; - enableSSHSupport = true; - }; - }; - }; -}