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

9 lines
290 B
Nix
Raw Normal View History

2024-03-27 02:10:20 +01:00
{ lib, self, inputs, outputs, stateVersion, hmStateVersion, ... }:
2024-03-20 09:23:30 +01:00
let
2024-03-25 03:53:39 +01:00
libx = import ../../../lib { inherit lib self inputs outputs stateVersion hmStateVersion; };
2024-03-20 09:23:30 +01:00
in {
containers = {
2024-04-05 11:25:03 +02:00
rdesktop = libx.mkContainer { hostname = "rdesktop"; unfree = true; desktop = "xfce"; };
2024-03-26 01:00:46 +01:00
};
2024-03-21 12:27:53 +01:00
}