Compare commits

..

No commits in common. "455579766728eb0f6c6372deddcdfcc1f1c3d5b1" and "a16e3ae3cb09c513b0929fbf6c502a92986d9ec3" have entirely different histories.

3 changed files with 14 additions and 11 deletions

View File

@ -233,7 +233,7 @@
irc = "irc.${baseName}"; irc = "irc.${baseName}";
metrics = "metrics.${baseName}"; metrics = "metrics.${baseName}";
minecraft = "minecraft.${baseName}"; minecraft = "minecraft.${baseName}";
n8n = "n8n2.${baseName}"; n8n = "n8n.${baseName}";
prometheus = "prom.${baseName}"; prometheus = "prom.${baseName}";
paperless = "paper.${baseName}"; paperless = "paper.${baseName}";
secrets = "vault.${baseName}"; secrets = "vault.${baseName}";
@ -341,6 +341,9 @@
pkgs-caddy = import inputs.nixpkgs-caddy { inherit system; }; pkgs-caddy = import inputs.nixpkgs-caddy { inherit system; };
}; };
modules = import ./hosts/arrow/modules.nix { inherit inputs globals overlays; } ++ [ modules = import ./hosts/arrow/modules.nix { inherit inputs globals overlays; } ++ [
# import
# ./modules/aws
# { inherit inputs; }
( (
{ ... }: { ... }:
{ {

View File

@ -26,16 +26,6 @@ inputs.nixpkgs.lib.nixosSystem rec {
device = "/dev/disk/by-label/boot"; device = "/dev/disk/by-label/boot";
fsType = "vfat"; fsType = "vfat";
}; };
virtualisation.vmVariant = {
virtualisation.forwardPorts = [
{
from = "host";
host.port = 2222;
guest.port = 22;
}
];
};
} }
]; ];
} }

View File

@ -26,6 +26,16 @@
# nix-index seems to eat up too much memory for Vultr # nix-index seems to eat up too much memory for Vultr
home-manager.users.${globals.user}.programs.nix-index.enable = inputs.nixpkgs.lib.mkForce false; home-manager.users.${globals.user}.programs.nix-index.enable = inputs.nixpkgs.lib.mkForce false;
virtualisation.vmVariant = {
virtualisation.forwardPorts = [
{
from = "host";
host.port = 2222;
guest.port = 22;
}
];
};
} }
../../modules/common ../../modules/common
../../modules/nixos ../../modules/nixos