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

9 lines
314 B
Nix
Raw Normal View History

2024-03-20 09:23:30 +01:00
{ self, inputs, outputs, username, stateVersion, hmStateVersion, config, lib, pkgs, modulesPath, system, ... }:
let
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion; };
in {
containers = {
2024-03-20 09:26:47 +01:00
rdesktop = libx.mkContainer { container = "rdesktop"; desktop = "xfce";};
2024-03-20 09:23:30 +01:00
};
}