From 5fd094d39cd78e987f943c7ff8f9ecd2a7303650 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 8 Mar 2020 19:14:08 +0000 Subject: [PATCH] Replace ~ with /home/wpcarro Nix runs the `rebuild` command as root, so ~ resolves to /root, which is not what I want. --- nixos/socrates/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/socrates/configuration.nix b/nixos/socrates/configuration.nix index 2cf23e48e..a1fbe0789 100644 --- a/nixos/socrates/configuration.nix +++ b/nixos/socrates/configuration.nix @@ -149,7 +149,7 @@ in { enableACME = true; # TODO(wpcarro): Prefer creating a default.nix in //learn and using # briefcase.learn as root. - root = ~/briefcase/learn/static; + root = /home/wpcarro/briefcase/learn/static; }; "blog.wpcarro.dev" = { addSSL = true;