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

10 lines
369 B
Nix
Raw Normal View History

2024-03-25 03:53:39 +01:00
{ lib, self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
2024-03-20 09:23:30 +01:00
let
2024-03-25 03:53:39 +01:00
libx = import ../../../lib { inherit lib self inputs outputs stateVersion hmStateVersion; };
2024-03-20 09:23:30 +01:00
in {
2024-03-21 12:27:53 +01:00
# Set up the bridge network:
2024-03-20 09:23:30 +01:00
containers = {
2024-03-22 14:36:01 +01:00
rdesktop = libx.mkContainer { hostname = "rdesktop"; unfree = true; repo = "nixpkgs-unstable"; desktop = "xfce"; };
2024-03-20 09:23:30 +01:00
};
2024-03-21 12:27:53 +01:00
}