mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 14:35:37 +00:00
add moonlight for game streaming
This commit is contained in:
parent
5b2fef7e01
commit
65aa25b213
@ -118,6 +118,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
|||||||
dwarf-fortress.enable = true;
|
dwarf-fortress.enable = true;
|
||||||
enable = true;
|
enable = true;
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
|
moonlight.enable = true;
|
||||||
legendary.enable = true;
|
legendary.enable = true;
|
||||||
lutris.enable = true;
|
lutris.enable = true;
|
||||||
ryujinx.enable = true;
|
ryujinx.enable = true;
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
./legendary.nix
|
./legendary.nix
|
||||||
./lutris.nix
|
./lutris.nix
|
||||||
./minecraft-server.nix
|
./minecraft-server.nix
|
||||||
|
./moonlight.nix
|
||||||
./ryujinx.nix
|
./ryujinx.nix
|
||||||
./steam.nix
|
./steam.nix
|
||||||
];
|
];
|
||||||
|
14
modules/nixos/gaming/moonlight.nix
Normal file
14
modules/nixos/gaming/moonlight.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
|
||||||
|
options.gaming.moonlight.enable = lib.mkEnableOption "Enable Moonlight game streaming client.";
|
||||||
|
|
||||||
|
config = lib.mkIf config.gaming.moonlight.enable {
|
||||||
|
environment.systemPackages = with pkgs; [ moonlight-qt ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user