dotfiles/modules/nixos/gaming/chiaki.nix
2023-04-15 10:11:44 -04:00

11 lines
244 B
Nix

{ config, pkgs, lib, ... }: {
options.gaming.chiaki.enable =
lib.mkEnableOption "Chiaki PlayStation remote play client.";
config = lib.mkIf config.gaming.chiaki.enable {
environment.systemPackages = with pkgs; [ chiaki ];
};
}