diff options
| -rw-r--r-- | config/services/web/quentin/default.nix | 5 | ||||
| -rw-r--r-- | flake.lock | 12 | ||||
| -rw-r--r-- | flake.nix | 4 |
3 files changed, 13 insertions, 8 deletions
diff --git a/config/services/web/quentin/default.nix b/config/services/web/quentin/default.nix index c4f1f44..f68e71c 100644 --- a/config/services/web/quentin/default.nix +++ b/config/services/web/quentin/default.nix @@ -3,7 +3,10 @@ { services.nginx.virtualHosts.quentin = { serverName = "quentin.${config.networking.domain}"; - locations."/".root = "${pkgs.personal.webpage}"; + locations."/".root = "${pkgs.personal.webpage.override { + line-awesome-css = + pkgs.personal.line-awesome-css.override { fontDisplay = "swap"; }; + }}"; forceSSL = true; enableACME = true; }; @@ -44,11 +44,11 @@ "nur": "nur" }, "locked": { - "lastModified": 1676822972, - "narHash": "sha256-Duxvn4bUTG0n03KO3cxvqThtEk1e6FfLdGXJLKrOV8c=", + "lastModified": 1676843836, + "narHash": "sha256-30WfZurSQ3N/H57jMPo8oWZorDYDx5KRHvoARn7iqFQ=", "owner": "qaristote", "repo": "my-nixpkgs", - "rev": "7b29378f133ed49c341d996698bb1207edc950a4", + "rev": "b3b7572e3655eaa6f29c4ce14aa08c08b82e1cd0", "type": "github" }, "original": { @@ -91,11 +91,11 @@ }, "nur": { "locked": { - "lastModified": 1676820779, - "narHash": "sha256-/EmCS02RHZbpOXLuv+iItYkice2/yjsSq2r0yAKenHE=", + "lastModified": 1676835938, + "narHash": "sha256-ZCrtBSXouMv+GfHC4hqn2lFfDkcC1/jdbTQzDcE9nTk=", "owner": "nix-community", "repo": "NUR", - "rev": "776010dc73870aa36e322411c47ede8155e1b2dd", + "rev": "cdcd1c22a21f63bd6e7be554b950dcde420ccd2e", "type": "github" }, "original": { @@ -17,8 +17,10 @@ my-nixpkgs.nixosModules.personal ({ ... }: { nixpkgs.overlays = [ - my-nixpkgs.overlays.personal personal-webpage.overlays.default + # TODO the order shouldn't matter, yet this overlay doesn't work + # if it comes first + my-nixpkgs.overlays.default (_: prev: { inherit (nixpkgs-unstable.legacyPackages."${prev.system}") filtron; |
