16 lines
534 B
Nix
16 lines
534 B
Nix
{ self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
|
|
let
|
|
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion pkgs-unstable pkgs; };
|
|
in {
|
|
# TODO: Set up Tailscale key
|
|
|
|
# Set up the bridge network:
|
|
networking = {
|
|
bridges.br0.interfaces = [ "enp0s13f0u4" ]; # nmcli con show | grep Wired\ connection\ 2
|
|
interfaces.br0.useDHCP = true;
|
|
};
|
|
|
|
containers = {
|
|
rdesktop = libx.mkContainer { hostname = "rdesktop"; desktop = "xfce"; unfree = true; };
|
|
};
|
|
}
|