From 6cff58fcb0a32f85fcff2a49f8f5f28dbd0756e4 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Tue, 13 Apr 2021 09:58:07 +0200 Subject: [PATCH] games: Disable osu-lazer-sandbox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently the build fails with (multiple instances of) error NU3037: Package '…' from source '/build/source/nixos': The author primary signature validity period has expired. --- users/simon/modules/games.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/simon/modules/games.nix b/users/simon/modules/games.nix index e119cb7..41243b8 100644 --- a/users/simon/modules/games.nix +++ b/users/simon/modules/games.nix @@ -1,5 +1,5 @@ { lib, nixosConfig, pkgs, ... }: lib.mkIf nixosConfig.sbruder.games.enable { - home.packages = [ ] - ++ lib.optional nixosConfig.sbruder.unfree.allowSoftware pkgs.unstable.osu-lazer-sandbox; + home.packages = [ ]; + #++ lib.optional nixosConfig.sbruder.unfree.allowSoftware pkgs.unstable.osu-lazer-sandbox; }