2024-03-25 03:53:39 +01:00
|
|
|
{ lib, self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
|
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 {
|
2024-03-25 04:30:28 +01:00
|
|
|
# Secrets
|
2024-03-20 09:23:30 +01:00
|
|
|
containers = {
|
2024-03-22 14:36:01 +01:00
|
|
|
rdesktop = libx.mkContainer { hostname = "rdesktop"; unfree = true; repo = "nixpkgs-unstable"; desktop = "xfce"; };
|
2024-03-20 09:23:30 +01:00
|
|
|
};
|
2024-03-21 12:27:53 +01:00
|
|
|
}
|