mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-25 02:41:26 +01:00
13 lines
202 B
Nix
13 lines
202 B
Nix
{
|
|
pkgs,
|
|
mylib,
|
|
...
|
|
}: {
|
|
imports = mylib.scanPaths ./.;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
waypipe
|
|
moonlight-qt # moonlight client, for streaming games/desktop from a PC
|
|
];
|
|
}
|