nixos-config/users/simon/modules/games.nix
Simon Bruder 6cff58fcb0
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.
2021-04-13 09:58:07 +02:00

6 lines
195 B
Nix

{ lib, nixosConfig, pkgs, ... }:
lib.mkIf nixosConfig.sbruder.games.enable {
home.packages = [ ];
#++ lib.optional nixosConfig.sbruder.unfree.allowSoftware pkgs.unstable.osu-lazer-sandbox;
}