This commit is contained in:
albert 2024-03-22 20:32:53 +09:00
parent 9d819792a4
commit eff13f8fc6
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
5 changed files with 17 additions and 6 deletions

View file

@ -4,6 +4,8 @@
../../common/software/packages.nix ../../common/software/packages.nix
]; ];
system.stateVersion = "24.05";
networking.firewall.allowedTCPPorts = [ 3389 ]; networking.firewall.allowedTCPPorts = [ 3389 ];
services.xrdp = { services.xrdp = {

View file

@ -1,6 +1,7 @@
{ {
"/etc/nixos/git" = { "/etc/nixos/git" = {
hostPath = "/etc/nixos/git"; hostPath = "/etc/nixos/git";
mountPoint = "/etc/nixos/git";
isReadOnly = false; isReadOnly = false;
}; };
} }

View file

@ -1,11 +1,19 @@
{ self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }: { self, inputs, outputs, stateVersion, hmStateVersion, pkgs, pkgs-unstable, ... }:
let 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 { in {
# TODO: Set up Tailscale key # TODO: Set up Tailscale key
# Set up the bridge network: # Set up the bridge network:
containers = { containers = {
rdesktop = libx.mkContainer { hostname = "rdesktop"; desktop = "xfce"; unfree = true; }; rdesktop = libx.mkContainer {
hostname = "rdesktop";
desktop = "plasma6";
unfree = true;
repo = "nixpkgs-unstable";
};
}; };
} }