add moonlight module

This commit is contained in:
Jörg Thalheim 2024-01-12 15:55:53 +01:00
parent 304dce0caa
commit e2cc218aa6
2 changed files with 7 additions and 2 deletions

View File

@ -6,10 +6,11 @@
inputs.disko.nixosModules.default
];
};
deltachat = ./deltachat.nix;
xfce = ./xfce.nix;
borgbackup = ./borgbackup.nix;
deltachat = ./deltachat.nix;
moonlight = ./moonlight.nix;
syncthing = ./syncthing.nix;
xfce = ./xfce.nix;
zt-tcp-relay = ./zt-tcp-relay.nix;
};
}

View File

@ -0,0 +1,4 @@
{ pkgs, ... }: {
hardware.opengl.enable = true;
environment.systemPackages = [ pkgs.moonlight-qt ];
}