@@ -6,13 +6,13 @@
 | 
				
			|||||||
      allowedTCPPorts = [
 | 
					      allowedTCPPorts = [
 | 
				
			||||||
        22 # ssh
 | 
					        22 # ssh
 | 
				
			||||||
        80 # http
 | 
					        80 # http
 | 
				
			||||||
      #  5454
 | 
					        #  5454
 | 
				
			||||||
        5001 #gitea
 | 
					        5001 #gitea
 | 
				
			||||||
        4646 #nomad
 | 
					        4646 #nomad
 | 
				
			||||||
      #  8500 #vault nomad consul
 | 
					        #  8500 #vault nomad consul
 | 
				
			||||||
        8000 #simpler-filehost
 | 
					        8000 #simpler-filehost
 | 
				
			||||||
      #  6666 #concourse
 | 
					        #  6666 #concourse
 | 
				
			||||||
      #  202 #gitea-ssh
 | 
					        #  202 #gitea-ssh
 | 
				
			||||||
      ];
 | 
					      ];
 | 
				
			||||||
      allowedUDPPorts = [ 17840 ];
 | 
					      allowedUDPPorts = [ 17840 ];
 | 
				
			||||||
      trustedInterfaces = [ "docker0" ];
 | 
					      trustedInterfaces = [ "docker0" ];
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -17,7 +17,7 @@
 | 
				
			|||||||
  services = {
 | 
					  services = {
 | 
				
			||||||
    openssh = {
 | 
					    openssh = {
 | 
				
			||||||
      enable = true;
 | 
					      enable = true;
 | 
				
			||||||
      ports = [22 22001];
 | 
					      ports = [ 22 22001 ];
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
    postgresql = {
 | 
					    postgresql = {
 | 
				
			||||||
      enable = true;
 | 
					      enable = true;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,5 +6,6 @@
 | 
				
			|||||||
    extraPortals = [
 | 
					    extraPortals = [
 | 
				
			||||||
      inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland
 | 
					      inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					    config.common.default = "*";
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,15 +27,8 @@
 | 
				
			|||||||
          enable = true;
 | 
					          enable = true;
 | 
				
			||||||
        };
 | 
					        };
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
      extraLayouts = {
 | 
					      xkb.layout = "us";
 | 
				
			||||||
        colemak = {
 | 
					      xkb.variant = "colemak_dh"; # trying to ditch DHz now
 | 
				
			||||||
          description = "Colemak Layouts";
 | 
					 | 
				
			||||||
          languages = [ "eng" ];
 | 
					 | 
				
			||||||
          symbolsFile = ./colemak;
 | 
					 | 
				
			||||||
        };
 | 
					 | 
				
			||||||
      };
 | 
					 | 
				
			||||||
      layout = "us";
 | 
					 | 
				
			||||||
      xkbVariant = "colemak_dh"; # trying to ditch DHz now
 | 
					 | 
				
			||||||
      autoRepeatDelay = 320;
 | 
					      autoRepeatDelay = 320;
 | 
				
			||||||
      autoRepeatInterval = 30;
 | 
					      autoRepeatInterval = 30;
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,17 +1,13 @@
 | 
				
			|||||||
{ inputs, self, ... }:
 | 
					{ inputs, self, ... }:
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  imports = [
 | 
					  config._module.args.globalArgs = {
 | 
				
			||||||
    {
 | 
					    _module.args = {
 | 
				
			||||||
      config._module.args.globalArgs = {
 | 
					      inherit inputs self;
 | 
				
			||||||
        _module.args = {
 | 
					      flake = self;
 | 
				
			||||||
          inherit inputs self;
 | 
					      lib' = {
 | 
				
			||||||
          flake = self;
 | 
					        colors = import ./colors.nix;
 | 
				
			||||||
          lib' = {
 | 
					        network = import ./network.nix;
 | 
				
			||||||
            colors = import ./colors.nix;
 | 
					 | 
				
			||||||
            network = import ./network.nix;
 | 
					 | 
				
			||||||
          };
 | 
					 | 
				
			||||||
        };
 | 
					 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
    }
 | 
					    };
 | 
				
			||||||
  ];
 | 
					  };
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user