darwin: sudo activation
This commit is contained in:
parent
0a1b2a3e33
commit
29fa165297
2 changed files with 2 additions and 3 deletions
|
@ -104,7 +104,7 @@ curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix
|
||||||
### Install nix-darwin
|
### Install nix-darwin
|
||||||
|
|
||||||
```sh
|
```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'
|
run 'github:LnL7/nix-darwin#darwin-rebuild' -- switch --option accept-flake-config true --flake 'github:nix-community/infra#$HOSTNAME'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
3
tasks.py
3
tasks.py
|
@ -23,8 +23,7 @@ def deploy(c: Any, hosts: str) -> None:
|
||||||
|
|
||||||
def deploy(h: DeployHost) -> None:
|
def deploy(h: DeployHost) -> None:
|
||||||
if "darwin" in h.host:
|
if "darwin" in h.host:
|
||||||
# don't use sudo for darwin-rebuild
|
command = "sudo -H darwin-rebuild"
|
||||||
command = "darwin-rebuild"
|
|
||||||
target = f"{h.user}@{h.host}"
|
target = f"{h.user}@{h.host}"
|
||||||
else:
|
else:
|
||||||
command = "sudo nixos-rebuild"
|
command = "sudo nixos-rebuild"
|
||||||
|
|
Loading…
Add table
Reference in a new issue