mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
11 lines
244 B
Nix
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 ];
|
||
|
};
|
||
|
|
||
|
}
|