system-specific modules such as darwin/games will now automatically import games.nix removes alot of duplication
14 lines
183 B
Nix
14 lines
183 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../games.nix ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
heroic
|
|
mangohud
|
|
];
|
|
|
|
programs.steam = {
|
|
enable = true;
|
|
};
|
|
}
|