12 lines
187 B
Nix
12 lines
187 B
Nix
{ lib, config, pkgs, ... }: {
|
|
nixpkgs.config = { allowUnfree = true; };
|
|
|
|
home.packages = with pkgs; [
|
|
lutris
|
|
prismlauncher
|
|
gamemode
|
|
mangohud
|
|
heroic
|
|
steam
|
|
];
|
|
}
|