Prepare for refactors
This commit is contained in:
parent
c54c259653
commit
5579b49e8e
|
@ -20,8 +20,9 @@
|
|||
inherit inputs;
|
||||
};
|
||||
}
|
||||
]
|
||||
++ (import ../modules);
|
||||
|
||||
../modules
|
||||
];
|
||||
})
|
||||
systems;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
netName = "m-infra";
|
||||
# https://github.com/NixOS/nixpkgs/blob/nixos-24.05/nixos/modules/services/networking/nebula.nix#L12
|
||||
userGroup = "nebula-${netName}";
|
||||
lhs = {"10.13.0.1" = ["min.rip:4242"];};
|
||||
lhs = {"10.13.0.1" = ["min.rip:4242"];}; # TODO: hardcoding
|
||||
lhsInt = builtins.attrNames lhs;
|
||||
in {
|
||||
sops.secrets."nebula-key" = {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
pkgs,
|
||||
...
|
||||
}: let
|
||||
net = {
|
||||
net = { # TODO: hardcoding (this module *may* be a good place to store values like this, though)
|
||||
address = "107.152.41.67";
|
||||
prefixLength = 24;
|
||||
subnet = "255.255.255.0";
|
||||
|
@ -95,11 +95,17 @@ in {
|
|||
hostKeys = ["/persist/etc/secrets/initrd/ssh_host_ed25519_key"];
|
||||
};
|
||||
|
||||
# Periodic nix gc
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
options = "--delete-older-than 30d";
|
||||
# Periodically optimise & collect garbage
|
||||
nix = {
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "daily";
|
||||
options = "--delete-older-than 30d";
|
||||
};
|
||||
optimise = {
|
||||
automatic = true;
|
||||
dates = ["daily"];
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
};
|
||||
|
||||
deployment = {
|
||||
host = "min.rip";
|
||||
host = "10.13.0.1";
|
||||
user = "root";
|
||||
port = 12208;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
disk = {
|
||||
main = {
|
||||
type = "disk";
|
||||
device = "/dev/vda";
|
||||
device = "/dev/vda"; # TODO: hardcoding (not sure if fixable)
|
||||
content = {
|
||||
type = "gpt";
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{...}: {
|
||||
sops = {
|
||||
sops = { # TODO: hardcoding
|
||||
defaultSopsFile = ../../../secrets/silver.yaml;
|
||||
age.sshKeyPaths = ["/persist/etc/ssh/ssh_host_ed25519_key"];
|
||||
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
{config, ...}: let
|
||||
sshExposeIp = "0.0.0.0"; # TODO: change this to the public-facing IP for prod
|
||||
sshExposeIp = "0.0.0.0"; # TODO: change this to the public-facing IP for prod (and ideally hardcode it somewhere else)
|
||||
sshIntPort = 14022;
|
||||
httpIntPort = 14020;
|
||||
dom = "git.min.rip";
|
||||
dom = "git.min.rip"; # TODO: hardcoding
|
||||
pBase = "/srv/gitea";
|
||||
pGitea = "${pBase}/gitea";
|
||||
pRunner = "${pBase}/runner";
|
||||
in {
|
||||
services.nginx = {
|
||||
virtualHosts.${dom} = {
|
||||
|
@ -28,9 +31,9 @@ in {
|
|||
|
||||
# Auto-create directories we need
|
||||
systemd.tmpfiles.rules = [
|
||||
"d /srv/gitea 0750 1000 1000 - -"
|
||||
"d /srv/gitea/gitea 0750 1000 1000 - -"
|
||||
"d /srv/gitea/runner 0750 1000 1000 - -"
|
||||
"d ${pBase} 0750 1000 1000 - -"
|
||||
"d ${pGitea} 0750 1000 1000 - -"
|
||||
"d ${pRunner} 0750 1000 1000 - -"
|
||||
];
|
||||
|
||||
virtualisation.oci-containers.containers.gitea = {
|
||||
|
@ -43,7 +46,7 @@ in {
|
|||
GITEA_APP_INI = "/data/gitea/conf/app.ini";
|
||||
};
|
||||
volumes = [
|
||||
"/srv/gitea/gitea:/data"
|
||||
"${pGitea}:/data"
|
||||
"/etc/localtime:/etc/localtime:ro"
|
||||
];
|
||||
ports = [
|
||||
|
@ -62,7 +65,7 @@ in {
|
|||
};
|
||||
environmentFiles = [config.sops.secrets."svc-gitea-runner-env".path];
|
||||
volumes = [
|
||||
"/srv/gitea/runner:/data"
|
||||
"${pRunner}:/data"
|
||||
];
|
||||
extraOptions = ["--privileged"];
|
||||
};
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{inputs, ...}: let
|
||||
dom = "min.rip";
|
||||
dom = "min.rip"; # TODO: hardcoding
|
||||
in {
|
||||
services.nginx.virtualHosts.${dom} = {
|
||||
root = "${inputs.min-rip}";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{config, ...}: let
|
||||
netName = "m-infra";
|
||||
netName = "m-infra"; # TODO: hardcoding
|
||||
# https://github.com/NixOS/nixpkgs/blob/nixos-24.05/nixos/modules/services/networking/nebula.nix#L12
|
||||
userGroup = "nebula-${netName}";
|
||||
in {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{config, ...}: let
|
||||
httpIntPort = 14030;
|
||||
dbIntPort = 14032;
|
||||
domHost = "mtx.min.rip";
|
||||
domDelegate = "min.rip";
|
||||
domHost = "mtx.min.rip"; # TODO: hardcoding
|
||||
domDelegate = "min.rip"; # TODO: hardcoding
|
||||
dir = "/srv/synapse";
|
||||
dirSynapse = "${dir}/synapse";
|
||||
dirDb = "${dir}/db";
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
[
|
||||
./system
|
||||
]
|
||||
{...}: {
|
||||
imports = [
|
||||
./system
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue