nixos-config/users/simon/modules/games.nix

6 lines
182 B
Nix
Raw Normal View History

2021-01-07 18:29:18 +01:00
{ config, lib, pkgs, ... }:
lib.mkIf config.sbruder.games.enable {
home.packages = [ ]
++ lib.optional config.sbruder.unfree.allowSoftware pkgs.unstable.osu-lazer-container;
}