14 lines
136 B
Nix
14 lines
136 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./steam.nix
|
|
./lutris.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
gamescope
|
|
mangohud
|
|
];
|
|
}
|