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 12:32:53 +01:00
|
|
|
libx = import ../../../lib {
|
|
|
|
inherit self inputs outputs hmStateVersion pkgs-unstable pkgs;
|
|
|
|
stateVersion = "24.05";
|
|
|
|
};
|
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 12:32:53 +01:00
|
|
|
rdesktop = libx.mkContainer {
|
|
|
|
hostname = "rdesktop";
|
|
|
|
desktop = "plasma6";
|
|
|
|
unfree = true;
|
|
|
|
repo = "nixpkgs-unstable";
|
|
|
|
};
|
2024-03-20 09:23:30 +01:00
|
|
|
};
|
2024-03-21 12:27:53 +01:00
|
|
|
}
|