2024-03-20 11:05:41 +01:00
|
|
|
{ self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
|
2024-03-20 09:23:30 +01:00
|
|
|
let
|
2024-03-22 14:10:30 +01:00
|
|
|
libx = import ../../../lib { inherit self inputs outputs stateVersion hmStateVersion; };
|
2024-03-20 09:23:30 +01:00
|
|
|
in {
|
2024-03-21 12:27:53 +01:00
|
|
|
# TODO: Set up Tailscale key
|
|
|
|
|
|
|
|
# Set up the bridge network:
|
2024-03-20 09:23:30 +01:00
|
|
|
containers = {
|
2024-03-22 14:36:01 +01:00
|
|
|
rdesktop = libx.mkContainer { hostname = "rdesktop"; unfree = true; repo = "nixpkgs-unstable"; desktop = "xfce"; };
|
2024-03-20 09:23:30 +01:00
|
|
|
};
|
2024-03-21 12:27:53 +01:00
|
|
|
}
|