games: Disable osu-lazer-sandbox

Currently the build fails with (multiple instances of) error NU3037:
Package '…' from source '/build/source/nixos': The author primary
signature validity period has expired.
pull/52/head
Simon Bruder 2021-04-13 09:58:07 +02:00
parent ec09bbf6c6
commit 6cff58fcb0
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}