8 lines
314 B
Nix
8 lines
314 B
Nix
{ self, inputs, outputs, username, stateVersion, hmStateVersion, config, lib, pkgs, modulesPath, system, ... }:
|
|
let
|
|
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion; };
|
|
in {
|
|
containers = {
|
|
rdesktop = libx.mkContainer { container = "rdesktop"; desktop = "xfce";};
|
|
};
|
|
}
|