This repository has been archived on 2024-11-22. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-old/modules/desktop/games.nix
Seven Of Aces ba8d509390 modified: hosts/blackstar/nixos/configuration.nix
modified:   modules/default.nix
   	new file:   modules/desktop/apps/emulationstation.nix
	modified:   modules/desktop/games.nix
2024-08-26 21:33:17 -07:00

16 lines
No EOL
283 B
Nix

{ lib, config, options, pkgs, ... }:
with lib;
let cfg = config.modules.desktop.games;
in {
options.modules.desktop.games = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
steam
lutris
];
};
}