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/apps/emulationstation.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

20 lines
No EOL
591 B
Nix

/* -------------------------------------------------------------------------- */
/* App config: EmulationStation */
/* -------------------------------------------------------------------------- */
{ lib, config, options, pkgs ? import <nixpkgs>, ... }:
with lib;
let cfg = config.modules.desktop.apps.emulationstation;
in {
options.modules.desktop.apps.emulationstation = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs.unstable; [
emulationstation-de
];
};
}