diff options
-rw-r--r-- | vps-configuration.env.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/vps-configuration.env.nix b/vps-configuration.env.nix index 183abc4..d66bd38 100644 --- a/vps-configuration.env.nix +++ b/vps-configuration.env.nix @@ -35,16 +35,16 @@ let }; staticSiteFromRepo = repoName: pkgs.stdenv.mkDerivation { - name = repoName; - src = - fetchTarball "https://git.sr.ht/~euandreh/${DOLLAR}{repoName}/archive/master.tar.gz"; - phases = "unpackPhase buildPhase"; - buildPhase = '' - mkdir ${DOLLAR}out - cp index.html ${DOLLAR}out - cp favicon.ico ${DOLLAR}out - ''; - }; + name = repoName; + src = fetchTarball + "https://git.sr.ht/~euandreh/${DOLLAR}{repoName}/archive/master.tar.gz"; + phases = "unpackPhase buildPhase"; + buildPhase = '' + mkdir ${DOLLAR}out + cp index.html ${DOLLAR}out + cp favicon.ico ${DOLLAR}out + ''; + }; in { imports = [ ./hardware-configuration.nix ]; |