From 4170c92d444dfe076fdb76b84f8bc5bf751e8dd7 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Thu, 28 Mar 2024 17:13:57 -0500 Subject: [PATCH] Working directory so builds can actually _go_ somewhere --- nixos/beefcake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/beefcake.nix b/nixos/beefcake.nix index 96c286a..b940d75 100644 --- a/nixos/beefcake.nix +++ b/nixos/beefcake.nix @@ -157,6 +157,8 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00 ''; path = with pkgs; [git nixos-rebuild]; serviceConfig = { + # TODO: mkdir -p...? + WorkingDirectory = "/home/daniel/.home/nightly-flake-builds"; Type = "oneshot"; User = "daniel"; # might have to run as me for git ssh access to the repo };