nix/nixos/hosts/framework-server/containers.nix
2024-03-20 19:05:41 +09:00

8 lines
319 B
Nix

{ self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
let
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion pkgs-unstable pkgs; };
in {
containers = {
rdesktop = libx.mkContainer { container = "rdesktop"; desktop = "xfce"; unfree = true;};
};
}