Merge branch 'master' of git.2li.ch:Nebucatnetzer/nixos

This commit is contained in:
Andreas Zweili 2023-02-08 21:23:58 +01:00
commit e9d5f3249c
2 changed files with 9 additions and 0 deletions

8
modules/rdp/default.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
services.xrdp = {
enable = true;
defaultWindowManager = "${pkgs.qtile}/bin/qtile start";
};
networking.firewall.allowedTCPPorts = [ 3389 ];
}

View File

@ -10,6 +10,7 @@
(import "${custom.inputs.self}/modules/desktop" { inherit custom; })
"${custom.inputs.self}/modules/lockscreen"
"${custom.inputs.self}/modules/logs-share"
"${custom.inputs.self}/modules/rdp"
"${custom.inputs.self}/modules/tlp"
(import "${custom.inputs.self}/modules/restic-client-desktop" { inherit custom; })
];