From 4d6b64dee9a6aa1cca22b2a65afa991ef2947811 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Sat, 4 Apr 2026 11:25:59 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20add=20nixos-rebuild=20to=20dotfiles-rebu?= =?UTF-8?q?ild=20PATH=20on=20sunken-ship=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nixos/hosts/sunken-ship.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/hosts/sunken-ship.nix b/nixos/hosts/sunken-ship.nix index 71385c6..f51700e 100644 --- a/nixos/hosts/sunken-ship.nix +++ b/nixos/hosts/sunken-ship.nix @@ -122,7 +122,7 @@ in # Pull dotfiles and rebuild if the repo has new commits. systemd.services.dotfiles-rebuild = { description = "Pull dotfiles and run nixos-rebuild if repo changed"; - path = with pkgs; [ git nix ]; + path = with pkgs; [ git nix nixos-rebuild ]; environment.GIT_CONFIG_COUNT = "1"; environment.GIT_CONFIG_KEY_0 = "safe.directory"; environment.GIT_CONFIG_VALUE_0 = dotfilesDir;