Compare commits
No commits in common. "7e95b77e1554aaaa190ca439a82c9ee4b96ab33d" and "b4c602e31c10c874e0cdf29dd12918a92a4a2006" have entirely different histories.
7e95b77e15
...
b4c602e31c
|
@ -63,7 +63,7 @@
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"fix-python": "fix-python",
|
"fix-python": "fix-python",
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
"nixpkgs"
|
"nixpkgs-unstable"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
nix-gitea-themes.inputs.nixpkgs.follows = "nixpkgs";
|
nix-gitea-themes.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
grzegorz.url = "github:Programvareverkstedet/grzegorz";
|
grzegorz.url = "github:Programvareverkstedet/grzegorz";
|
||||||
grzegorz.inputs.nixpkgs.follows = "nixpkgs";
|
grzegorz.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
grzegorz-clients.url = "github:Programvareverkstedet/grzegorz-clients";
|
grzegorz-clients.url = "github:Programvareverkstedet/grzegorz-clients";
|
||||||
grzegorz-clients.inputs.nixpkgs.follows = "nixpkgs";
|
grzegorz-clients.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
{ values, ... }:
|
||||||
|
{
|
||||||
|
users.groups.acme.members = [ "nginx" ];
|
||||||
|
|
||||||
|
security.acme.certs."postgres.pvv.ntnu.no" = {
|
||||||
|
group = "acme";
|
||||||
|
extraDomainNames = [
|
||||||
|
# "postgres.pvv.org"
|
||||||
|
"bicep.pvv.ntnu.no"
|
||||||
|
# "bicep.pvv.org"
|
||||||
|
# values.hosts.bicep.ipv4
|
||||||
|
# values.hosts.bicep.ipv6
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
virtualHosts."postgres.pvv.ntnu.no" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
# useACMEHost = "postgres.pvv.ntnu.no";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -7,6 +7,8 @@
|
||||||
../../misc/metrics-exporters.nix
|
../../misc/metrics-exporters.nix
|
||||||
./services/nginx
|
./services/nginx
|
||||||
|
|
||||||
|
./acmeCert.nix
|
||||||
|
|
||||||
./services/mysql.nix
|
./services/mysql.nix
|
||||||
./services/postgres.nix
|
./services/postgres.nix
|
||||||
./services/mysql.nix
|
./services/mysql.nix
|
||||||
|
@ -34,9 +36,6 @@
|
||||||
anyInterface = true;
|
anyInterface = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# There are no smart devices
|
|
||||||
services.smartd.enable = false;
|
|
||||||
|
|
||||||
# Do not change, even during upgrades.
|
# Do not change, even during upgrades.
|
||||||
# See https://search.nixos.org/options?show=system.stateVersion
|
# See https://search.nixos.org/options?show=system.stateVersion
|
||||||
system.stateVersion = "22.11";
|
system.stateVersion = "22.11";
|
||||||
|
|
|
@ -46,9 +46,6 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
];
|
];
|
||||||
|
|
||||||
# No devices with SMART
|
|
||||||
services.smartd.enable = false;
|
|
||||||
|
|
||||||
system.stateVersion = "23.11"; # Did you read the comment?
|
system.stateVersion = "23.11"; # Did you read the comment?
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,6 @@ in {
|
||||||
"ildkule.pvv.ntnu.no:${toString cfg.exporters.node.port}"
|
"ildkule.pvv.ntnu.no:${toString cfg.exporters.node.port}"
|
||||||
"bicep.pvv.ntnu.no:9101"
|
"bicep.pvv.ntnu.no:9101"
|
||||||
"bekkalokk.pvv.ntnu.no:9101"
|
"bekkalokk.pvv.ntnu.no:9101"
|
||||||
"brzeczyszczykiewicz.pvv.ntnu.no:9101"
|
|
||||||
"georg.pvv.ntnu.no:9101"
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue