nix/nixos/hosts/framework-server/containers.nix

12 lines
383 B
Nix
Raw Normal View History

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-20 11:05:41 +01:00
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion pkgs-unstable pkgs; };
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 04:29:28 +01:00
rdesktop = libx.mkContainer { hostname = "rdesktop"; desktop = "xfce"; unfree = true; };
2024-03-20 09:23:30 +01:00
};
2024-03-21 12:27:53 +01:00
}