diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-16 14:07:14 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-16 14:07:14 -0500 |
commit | b68faba46bf6028547cf545d80d3f325028316bf (patch) | |
tree | 2004ca671598eb89d9f2a5cb30d262000b687be2 | |
parent | 72e03e6d85aa223810ff1d4fb0684d51e7b3f4f5 (diff) | |
download | nixos-b68faba46bf6028547cf545d80d3f325028316bf.tar.gz nixos-b68faba46bf6028547cf545d80d3f325028316bf.tar.bz2 nixos-b68faba46bf6028547cf545d80d3f325028316bf.zip |
update
-rw-r--r-- | configuration.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix index 95668c8..d8a9dcb 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,7 +1,6 @@ { pkgs, inputs, ... }: let cgitCss = pkgs.writeText "cgit.css" (builtins.readFile ./cgit.css); - blobs = pkgs.readDir "blobs" in { imports = [ ./hardware-configuration.nix @@ -150,7 +149,7 @@ in { forceSSL = true; enableACME = true; locations."/" = { - root = "${blobs}"; + root = "${./blobs}"; }; }; |