19 lines
469 B
Nix
19 lines
469 B
Nix
{ self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
|
|
let
|
|
libx = import ../../../lib {
|
|
inherit self inputs outputs hmStateVersion pkgs-unstable pkgs;
|
|
stateVersion = "24.05";
|
|
};
|
|
in {
|
|
# TODO: Set up Tailscale key
|
|
|
|
# Set up the bridge network:
|
|
containers = {
|
|
rdesktop = libx.mkContainer {
|
|
hostname = "rdesktop";
|
|
desktop = "plasma6";
|
|
unfree = true;
|
|
repo = "nixpkgs-unstable";
|
|
};
|
|
};
|
|
}
|