8 lines
319 B
Nix
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;};
|
|
};
|
|
}
|