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