summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-06-07 19:03:22 +0200
committerGitHub <noreply@github.com>2022-06-07 19:03:22 +0200
commit2d399082aa8fde19964fe041d78b9f9f5c8bc990 (patch)
treee10fc8200f17faacd2ebe245306e67cd7645c4d4 /nixos
parent0e5b34f801b496a4d2c5ba47a0812105145c7172 (diff)
parent43d4ddf28e0facf1e5b8e8cb3cd86871d250ab03 (diff)
downloadnixpkgs-2d399082aa8fde19964fe041d78b9f9f5c8bc990.tar
nixpkgs-2d399082aa8fde19964fe041d78b9f9f5c8bc990.tar.gz
nixpkgs-2d399082aa8fde19964fe041d78b9f9f5c8bc990.tar.bz2
nixpkgs-2d399082aa8fde19964fe041d78b9f9f5c8bc990.tar.lz
nixpkgs-2d399082aa8fde19964fe041d78b9f9f5c8bc990.tar.xz
nixpkgs-2d399082aa8fde19964fe041d78b9f9f5c8bc990.tar.zst
nixpkgs-2d399082aa8fde19964fe041d78b9f9f5c8bc990.zip
Merge pull request #176723 from SuperSandro2000/runCommandNoCC
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
       '')
     ];