From b07fe81ea8573a405dd40a6237d9c547c8b670fc Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 23 Mar 2024 12:24:20 -0400 Subject: [PATCH] Add warning msg for Hugo build issue --- flake.lock | 6 +++--- modules/apps/hugo.nix | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 0b00b9b..080a53e 100644 --- a/flake.lock +++ b/flake.lock @@ -117,11 +117,11 @@ ] }, "locked": { - "lastModified": 1710974515, - "narHash": "sha256-jZpdsypecYTOO9l12Vy77otGmh9uz8tGzcguifA30Vs=", + "lastModified": 1711133180, + "narHash": "sha256-WJOahf+6115+GMl3wUfURu8fszuNeJLv9qAWFQl3Vmo=", "owner": "nix-community", "repo": "home-manager", - "rev": "1c2acec99933f9835cc7ad47e35303de92d923a4", + "rev": "1c2c5e4cabba4c43504ef0f8cc3f3dfa284e2dbb", "type": "github" }, "original": { diff --git a/modules/apps/hugo.nix b/modules/apps/hugo.nix index 7b6ddc4..ff653e8 100644 --- a/modules/apps/hugo.nix +++ b/modules/apps/hugo.nix @@ -10,8 +10,9 @@ with lib; }; config = mkIf cfg.enable { + warnings = [ "Hugo package temporarily disabled until this build issue gets fixed: https://github.com/NixOS/nixpkgs/pull/298026" ]; environment.systemPackages = with pkgs; [ - #hugo # Temporarily disabled until this build issue gets fixed: https://github.com/NixOS/nixpkgs/pull/298026 + #hugo rsync yarn ];