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

10 lines
322 B
Nix
Raw Normal View History

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