about summary refs log tree commit diff
path: root/nixos/modules/services/hardware
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-06-18 22:55:24 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2024-01-14 18:03:30 +0100
commitc09acaa9056975a9a5b52be1703e543151283a91 (patch)
treebec3021eb3e822c142d0efd83c8f2feae3ead5d4 /nixos/modules/services/hardware
parentfd309df083ec8a904f2ccb3fceb39bfb523c32be (diff)
downloadnixlib-c09acaa9056975a9a5b52be1703e543151283a91.tar
nixlib-c09acaa9056975a9a5b52be1703e543151283a91.tar.gz
nixlib-c09acaa9056975a9a5b52be1703e543151283a91.tar.bz2
nixlib-c09acaa9056975a9a5b52be1703e543151283a91.tar.lz
nixlib-c09acaa9056975a9a5b52be1703e543151283a91.tar.xz
nixlib-c09acaa9056975a9a5b52be1703e543151283a91.tar.zst
nixlib-c09acaa9056975a9a5b52be1703e543151283a91.zip
nixos/pcscd: cleanup code
Diffstat (limited to 'nixos/modules/services/hardware')
-rw-r--r--nixos/modules/services/hardware/pcscd.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/modules/services/hardware/pcscd.nix b/nixos/modules/services/hardware/pcscd.nix
index a9e4998efe37..0935f966110a 100644
--- a/nixos/modules/services/hardware/pcscd.nix
+++ b/nixos/modules/services/hardware/pcscd.nix
@@ -16,9 +16,6 @@ let
 
 in
 {
-
-  ###### interface
-
   options.services.pcscd = {
     enable = mkEnableOption (lib.mdDoc "PCSC-Lite daemon");
 
@@ -46,10 +43,7 @@ in
     };
   };
 
-  ###### implementation
-
   config = mkIf config.services.pcscd.enable {
-
     environment.etc."reader.conf".source = cfgFile;
 
     environment.systemPackages = [ package ];