dotfiles/modules/nixos/gaming/chiaki.nix

15 lines
247 B
Nix
Raw Normal View History

2024-04-20 13:42:06 +00:00
{
config,
pkgs,
lib,
...
}:
{
2023-04-15 14:11:44 +00:00
2024-04-20 13:42:06 +00:00
options.gaming.chiaki.enable = lib.mkEnableOption "Chiaki PlayStation remote play client.";
2023-04-15 14:11:44 +00:00
config = lib.mkIf config.gaming.chiaki.enable {
environment.systemPackages = with pkgs; [ chiaki ];
};
}