adds auto-start files

This commit is contained in:
2024-11-02 02:27:32 +01:00
parent 46f83918e1
commit e38ed1532a
9 changed files with 324 additions and 5 deletions

View File

@@ -48,9 +48,10 @@
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
environment.systemPackages = [
pkgs.tailscale
pkgs.pciutils
environment.systemPackages = with pkgs; [
tailscale
pciutils
gnome3.gnome-session
];
services.tailscale.enable = true;
@@ -102,8 +103,16 @@
# Open ports in the firewall.
networking.firewall = {
enable = true;
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
allowedTCPPorts = [
3389
3390
3391
];
allowedUDPPorts = [
3389
3390
3391
];
};
# Set hostname to DOTF_HOSTNAME if defined, otherwise use the hostname of the system.