about summary refs log tree commit diff
path: root/modules/services/pcscd/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-01 19:52:29 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-01 19:52:29 -0700
commit5493fe0db118b0fd934073eb63d2d2e3e1fc99df (patch)
treeb6e1a0d57b39f2c2a366358d5bcd5a54dc66e20c /modules/services/pcscd/default.nix
parentprofiles/laptop: consolidate services related to laptop (diff)
downloadworld-5493fe0db118b0fd934073eb63d2d2e3e1fc99df.tar.gz
profiles/workstation: moved more things around
Diffstat (limited to 'modules/services/pcscd/default.nix')
-rw-r--r--modules/services/pcscd/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/modules/services/pcscd/default.nix b/modules/services/pcscd/default.nix
deleted file mode 100644
index 84a588e..0000000
--- a/modules/services/pcscd/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-# PCSCD management
-{ config, lib, ... }:
-let cfg = config.my.services.pcscd;
-in
-{
-  options.my.services.pcscd = {
-    enable = lib.mkEnableOption "pcscd configuration (for yubikeys)";
-  };
-
-  config = lib.mkIf cfg.enable { services.pcscd.enable = true; };
-}