From 29fa165297172016b2239e9a52ac4ec1fb1e3947 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 16 Feb 2025 12:32:20 +1000 Subject: [PATCH] darwin: sudo activation --- devdoc/darwin.md | 2 +- tasks.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/devdoc/darwin.md b/devdoc/darwin.md index 090e1ac..f040f7d 100644 --- a/devdoc/darwin.md +++ b/devdoc/darwin.md @@ -104,7 +104,7 @@ curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix ### Install nix-darwin ```sh -nix --extra-experimental-features 'flakes nix-command' --option accept-flake-config true \ +sudo -H nix --extra-experimental-features 'flakes nix-command' --option accept-flake-config true \ run 'github:LnL7/nix-darwin#darwin-rebuild' -- switch --option accept-flake-config true --flake 'github:nix-community/infra#$HOSTNAME' ``` diff --git a/tasks.py b/tasks.py index bba4314..af9506e 100644 --- a/tasks.py +++ b/tasks.py @@ -23,8 +23,7 @@ def deploy(c: Any, hosts: str) -> None: def deploy(h: DeployHost) -> None: if "darwin" in h.host: - # don't use sudo for darwin-rebuild - command = "darwin-rebuild" + command = "sudo -H darwin-rebuild" target = f"{h.user}@{h.host}" else: command = "sudo nixos-rebuild"