9 lines
297 B
Nix
9 lines
297 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"; };
|
||
|
};
|
||
|
}
|