test
This commit is contained in:
parent
9d819792a4
commit
eff13f8fc6
5 changed files with 17 additions and 6 deletions
|
@ -4,6 +4,8 @@
|
|||
../../common/software/packages.nix
|
||||
];
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 3389 ];
|
||||
|
||||
services.xrdp = {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"/etc/nixos/git" = {
|
||||
hostPath = "/etc/nixos/git";
|
||||
mountPoint = "/etc/nixos/git";
|
||||
isReadOnly = false;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,11 +1,19 @@
|
|||
{ self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
|
||||
let
|
||||
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion pkgs-unstable pkgs; };
|
||||
libx = import ../../../lib {
|
||||
inherit self inputs outputs hmStateVersion pkgs-unstable pkgs;
|
||||
stateVersion = "24.05";
|
||||
};
|
||||
in {
|
||||
# TODO: Set up Tailscale key
|
||||
|
||||
# Set up the bridge network:
|
||||
containers = {
|
||||
rdesktop = libx.mkContainer { hostname = "rdesktop"; desktop = "xfce"; unfree = true; };
|
||||
rdesktop = libx.mkContainer {
|
||||
hostname = "rdesktop";
|
||||
desktop = "plasma6";
|
||||
unfree = true;
|
||||
repo = "nixpkgs-unstable";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue