summary refs log tree commit diff
path: root/nixos
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
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')
-rw-r--r--nixos/modules/hardware/gpgsmartcards.nix2
-rw-r--r--nixos/modules/programs/captive-browser.nix2
2 files changed, 2 insertions, 2 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}"
diff --git a/nixos/modules/programs/captive-browser.nix b/nixos/modules/programs/captive-browser.nix
index aad554c2bd6..1e5c6ff9b24 100644
--- a/nixos/modules/programs/captive-browser.nix
+++ b/nixos/modules/programs/captive-browser.nix
@@ -98,7 +98,7 @@ in
 
   config = mkIf cfg.enable {
     environment.systemPackages = [
-      (pkgs.runCommandNoCC "captive-browser-desktop-item" { } ''
+      (pkgs.runCommand "captive-browser-desktop-item" { } ''
         install -Dm444 -t $out/share/applications ${desktopItem}/share/applications/*.desktop
       '')
     ];