summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-06-07 16:57:06 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-06-07 16:57:06 +0200
commit43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03 (patch)
tree46dbf2c8654219c7a869fd903269999715600382 /nixos/modules/hardware
parent3037752d1d9450921ca3536fee12826188e8082d (diff)
downloadnixpkgs-43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03.tar
nixpkgs-43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03.tar.gz
nixpkgs-43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03.tar.bz2
nixpkgs-43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03.tar.lz
nixpkgs-43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03.tar.xz
nixpkgs-43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03.tar.zst
nixpkgs-43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03.zip
treewide: remove usage of runCommandNoCC aliases
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/gpgsmartcards.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/gpgsmartcards.nix b/nixos/modules/hardware/gpgsmartcards.nix
index 6e5fcda6b85..4c1d0cc5b2a 100644
--- a/nixos/modules/hardware/gpgsmartcards.nix
+++ b/nixos/modules/hardware/gpgsmartcards.nix
@@ -19,7 +19,7 @@ let
   # per debian's udev deb hook (https://man7.org/linux/man-pages/man1/dh_installudev.1.html)
   destination = "60-scdaemon.rules";
 
-  scdaemonUdevRulesPkg = pkgs.runCommandNoCC "scdaemon-udev-rules" {} ''
+  scdaemonUdevRulesPkg = pkgs.runCommand "scdaemon-udev-rules" {} ''
     loc="$out/lib/udev/rules.d/"
     mkdir -p "''${loc}"
     cp "${scdaemonRules}" "''${loc}/${destination}"