Compare commits

..

1 Commits

Author SHA1 Message Date
3bcc37073c avoid using lupine-4 for gitea actions
All checks were successful
Eval nix flake / evals (push) Successful in 8m30s
Eval nix flake / evals (pull_request) Successful in 10m7s
2026-03-23 02:59:35 +01:00
2 changed files with 4 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
{
security.acme = {
acceptTerms = true;
defaults.email = "drift@pvv.ntnu.no";
defaults.email = "acme-drift@pvv.ntnu.no";
};
# Let's not spam LetsEncrypt in `nixos-rebuild build-vm` mode:

View File

@@ -1,12 +1,11 @@
{ fp, values, lupineName, ... }:
{ fp, values, lib, lupineName, ... }:
{
imports = [
./hardware-configuration/${lupineName}.nix
(fp /base)
./services/gitea-runner.nix
];
# lupine-4 does not have enough ram for running nix flake check
] ++ lib.optionals (lupineName != "lupine-4") [ ./services/gitea-runner.nix ];
sops.defaultSopsFile = fp /secrets/lupine/lupine.yaml;