From 2886fed16661b48609c9c6f835442aa9cb30ca7d Mon Sep 17 00:00:00 2001 From: willifan Date: Sat, 31 Aug 2024 10:50:31 +0200 Subject: [PATCH] added moonlight --- users/willifan/desktop/games/default.nix | 1 + users/willifan/desktop/games/moonlight.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 users/willifan/desktop/games/moonlight.nix diff --git a/users/willifan/desktop/games/default.nix b/users/willifan/desktop/games/default.nix index 768a2ff..53a6b11 100644 --- a/users/willifan/desktop/games/default.nix +++ b/users/willifan/desktop/games/default.nix @@ -5,6 +5,7 @@ ./mangohud.nix ./minecraft.nix + ./moonlight.nix ./ROG_Pugio_II_fixes.nix ./steam.nix ./tetrio.nix diff --git a/users/willifan/desktop/games/moonlight.nix b/users/willifan/desktop/games/moonlight.nix new file mode 100644 index 0000000..8b502cf --- /dev/null +++ b/users/willifan/desktop/games/moonlight.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + + environment.systemPackages = [ + pkgs.moonlight-qt + ]; + +}