nixos-configs/modules/games.nix

23 lines
582 B
Nix
Raw Normal View History

2021-07-16 21:09:58 +02:00
{ config, lib, pkgs, ... }:
{
home-manager.users.froidmpa = { pkgs, config, ... }: {
# nixpkgs.config = {
# allowUnfree = true;
# packageOverrides = super:
# let self = super.pkgs; in
# {
# lutris-unwrapped = super.lutris-unwrapped.overridePythonAttrs (oldAttrs: rec {
# patches = [
# ./lutris_sort_new_with_model_fix.patch
# ];
# });
# };
# };
# home.packages = with pkgs; [
# steam
# dolphinEmu
# ];
};
}