about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rw-r--r--machines/aszlig/managed/shakti.nix2
-rw-r--r--machines/profpatsch/haku.nix2
-rw-r--r--machines/profpatsch/pkgs.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/machines/aszlig/managed/shakti.nix b/machines/aszlig/managed/shakti.nix
index 330d644c..8440ce6f 100644
--- a/machines/aszlig/managed/shakti.nix
+++ b/machines/aszlig/managed/shakti.nix
@@ -26,7 +26,7 @@
   # information and the monitor is also very weird because it doesn't
   # understand the fallback modes.
   boot.kernelParams = [ "drm_kms_helper.edid_firmware=edid/weird.bin" ];
-  hardware.firmware = lib.singleton (pkgs.runCommand "weird-edid" {} ''
+  hardware.firmware = lib.singleton (pkgs.runCommandLocal "weird-edid" {} ''
     mkdir -p "$out/lib/firmware/edid"
     base64 -d > "$out/lib/firmware/edid/weird.bin" <<EOF
     AP///////wAEaaEiAQEBASQRAQOALx1477U1pVZKmiUQUFS/74BxT4GAlQCzAAEBlQ+BioFA
diff --git a/machines/profpatsch/haku.nix b/machines/profpatsch/haku.nix
index 866fc05b..b456388f 100644
--- a/machines/profpatsch/haku.nix
+++ b/machines/profpatsch/haku.nix
@@ -111,7 +111,7 @@ in
             rev = "ef02aa8f074d0d5209839cd12ba7a67685fdaa05";
             sha256 = "1hr2si73lam463pcf25napfbk0zb30kgv3ncc0ahv6wndjpsvg7z";
           };
-          in pkgs.runCommand "lojbanistan-www" {} ''
+          in pkgs.runCommandLocal "lojbanistan-www" {} ''
             mkdir $out
             echo "coi do" > $out/index.html
             ${pkgs.imagemagick}/bin/convert \
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index 13555897..80e73829 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -97,7 +97,7 @@ let
         notify-send = "${pkgs.libnotify.overrideAttrs (old: {
           patches = old.patches or [] ++ [ ./patches/libnotify.patch ];
         })}/bin/notify-send";
-    in pkgs.runCommand "pyrnotify.py" {} ''
+    in pkgs.runCommandLocal "pyrnotify.py" {} ''
       substitute "${src}/pyrnotify.py" $out \
         --replace 'notify-send' '${notify-send}'
     '';