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

9 lines
319 B
Nix
Raw Normal View History

2024-03-20 11:05:41 +01:00
{ self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
2024-03-20 09:23:30 +01:00
let
2024-03-20 11:05:41 +01:00
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion pkgs-unstable pkgs; };
2024-03-20 09:23:30 +01:00
in {
containers = {
2024-03-20 11:05:41 +01:00
rdesktop = libx.mkContainer { container = "rdesktop"; desktop = "xfce"; unfree = true;};
2024-03-20 09:23:30 +01:00
};
}