Compare commits
4 Commits
b4c602e31c
...
7e95b77e15
Author | SHA1 | Date |
---|---|---|
Daniel Olsen | 7e95b77e15 | |
Daniel Olsen | 669733309b | |
Daniel Olsen | 4ed12573ff | |
Daniel Olsen | 8418cc016c |
|
@ -63,7 +63,7 @@
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"fix-python": "fix-python",
|
"fix-python": "fix-python",
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
"nixpkgs-unstable"
|
"nixpkgs"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"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-unstable";
|
grzegorz.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
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";
|
||||||
|
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
{ 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,8 +7,6 @@
|
||||||
../../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
|
||||||
|
@ -36,6 +34,9 @@
|
||||||
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,6 +46,9 @@
|
||||||
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,6 +9,8 @@ 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