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

6 lines
182 B
Nix

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